{"id":2633,"date":"2019-01-30T14:16:22","date_gmt":"2019-01-30T13:16:22","guid":{"rendered":"https:\/\/www.sviluppomania.com\/it\/?p=2633"},"modified":"2022-06-26T18:47:48","modified_gmt":"2022-06-26T16:47:48","slug":"tipi-di-dadi-primitivi","status":"publish","type":"post","link":"https:\/\/www.sviluppomania.com\/en\/types-of-primitive-data\/","title":{"rendered":"C Language &#8211; Types of primitive data"},"content":{"rendered":"<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\" fifu-lazy=\"1\" fifu-data-sizes=\"auto\" fifu-data-srcset=\"https:\/\/i2.wp.com\/i.ibb.co\/8KnXcRv\/sigla.jpg?ssl=1&w=75&resize=75&ssl=1 75w, https:\/\/i2.wp.com\/i.ibb.co\/8KnXcRv\/sigla.jpg?ssl=1&w=100&resize=100&ssl=1 100w, https:\/\/i2.wp.com\/i.ibb.co\/8KnXcRv\/sigla.jpg?ssl=1&w=150&resize=150&ssl=1 150w, https:\/\/i2.wp.com\/i.ibb.co\/8KnXcRv\/sigla.jpg?ssl=1&w=240&resize=240&ssl=1 240w, https:\/\/i2.wp.com\/i.ibb.co\/8KnXcRv\/sigla.jpg?ssl=1&w=320&resize=320&ssl=1 320w, https:\/\/i2.wp.com\/i.ibb.co\/8KnXcRv\/sigla.jpg?ssl=1&w=500&resize=500&ssl=1 500w, https:\/\/i2.wp.com\/i.ibb.co\/8KnXcRv\/sigla.jpg?ssl=1&w=640&resize=640&ssl=1 640w, https:\/\/i2.wp.com\/i.ibb.co\/8KnXcRv\/sigla.jpg?ssl=1&w=800&resize=800&ssl=1 800w, https:\/\/i2.wp.com\/i.ibb.co\/8KnXcRv\/sigla.jpg?ssl=1&w=1024&resize=1024&ssl=1 1024w, https:\/\/i2.wp.com\/i.ibb.co\/8KnXcRv\/sigla.jpg?ssl=1&w=1280&resize=1280&ssl=1 1280w, https:\/\/i2.wp.com\/i.ibb.co\/8KnXcRv\/sigla.jpg?ssl=1&w=1600&resize=1600&ssl=1 1600w\" class=\"wp-image-2634\" fifu-data-src=\"https:\/\/i2.wp.com\/i.ibb.co\/8KnXcRv\/sigla.jpg?ssl=1\" alt=\"C Language\" \/><\/figure>\r\n<\/div>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<h3>What are the variables?<\/h3>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<p>We must imagine the variables as the drawers of our bedside table, where we can put the things we want to save temporarily.<\/p>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<p>There are various types of variables, those mainly used are integer variables &#8220;int&#8221; where integer numbers are saved, &#8220;char&#8221; character variables where all the characters are saved (from the alphabet to particular characters like @ #., &#8230;&#8230; &#8230;.) And variables of real numbers &#8220;float&#8221; where the real numbers are saved with the decimal part.<\/p>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<h3>How are the variables declared?<\/h3>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<p>The variable name must be written in lowercase and can take any name. It is always better to give names that indicate what those variables are.<\/p>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<p>int number=0;<\/p>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<p>char character;<\/p>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<p>float decimal_number=0;<\/p>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<p>Now let&#8217;s try to give values to these keyboard variables.<\/p>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<p>To give values, use the &#8220;scanf ()&#8221; function.<\/p>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<p>If we want to save an integer number we have to write &#8220;scanf (&#8220;%d&#8221;, &amp;number); &#8220;<\/p>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<p>%d indicates that we must save an integer, &amp;number (where number and the name of our variable) indicates that the whole number that we input from the keyboard will save it in our variable.<\/p>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<p>Instead, to save a character, use &#8220;%c&#8221; and to save a decimal number &#8220;%f&#8221;.<\/p>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<p>Also to display the variables on the screen then you have to tell the printf what type of variable it should print and its name.<\/p>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<p>Example printf (&#8220;%d&#8221;, number);<\/p>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\" fifu-lazy=\"1\" fifu-data-sizes=\"auto\" fifu-data-srcset=\"https:\/\/i1.wp.com\/i.ibb.co\/dmrJBRk\/C-1.jpg?ssl=1&w=75&resize=75&ssl=1 75w, https:\/\/i1.wp.com\/i.ibb.co\/dmrJBRk\/C-1.jpg?ssl=1&w=100&resize=100&ssl=1 100w, https:\/\/i1.wp.com\/i.ibb.co\/dmrJBRk\/C-1.jpg?ssl=1&w=150&resize=150&ssl=1 150w, https:\/\/i1.wp.com\/i.ibb.co\/dmrJBRk\/C-1.jpg?ssl=1&w=240&resize=240&ssl=1 240w, https:\/\/i1.wp.com\/i.ibb.co\/dmrJBRk\/C-1.jpg?ssl=1&w=320&resize=320&ssl=1 320w, https:\/\/i1.wp.com\/i.ibb.co\/dmrJBRk\/C-1.jpg?ssl=1&w=500&resize=500&ssl=1 500w, https:\/\/i1.wp.com\/i.ibb.co\/dmrJBRk\/C-1.jpg?ssl=1&w=640&resize=640&ssl=1 640w, https:\/\/i1.wp.com\/i.ibb.co\/dmrJBRk\/C-1.jpg?ssl=1&w=800&resize=800&ssl=1 800w, https:\/\/i1.wp.com\/i.ibb.co\/dmrJBRk\/C-1.jpg?ssl=1&w=1024&resize=1024&ssl=1 1024w, https:\/\/i1.wp.com\/i.ibb.co\/dmrJBRk\/C-1.jpg?ssl=1&w=1280&resize=1280&ssl=1 1280w, https:\/\/i1.wp.com\/i.ibb.co\/dmrJBRk\/C-1.jpg?ssl=1&w=1600&resize=1600&ssl=1 1600w\" class=\"wp-image-2635\" fifu-data-src=\"https:\/\/i1.wp.com\/i.ibb.co\/dmrJBRk\/C-1.jpg?ssl=1\" alt=\"C Language\" \/><\/figure>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<h3>More information<\/h3>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<p>By entering &#8221; \/\/ &#8221; the line will turn green and is a comment line where you can write on that line all the time the compiler will skip it.<\/p>\r\n\r\n<p>&nbsp;<\/p>\r\n\r\n<p>As you can see from the photo in the printf I inserted the \u201c \\n \u201c tab that indicates to go to the next line to view.<\/p>\r\n<p>&nbsp;<\/p>\r\n<p>Stay Tuned!<\/p>","protected":false},"excerpt":{"rendered":"<p>&nbsp; What are the variables? &nbsp; We must imagine the variables as the drawers of our bedside table, where we&#8230;<\/p>\n","protected":false},"author":71,"featured_media":7087,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"fifu_image_url":"https:\/\/i.ibb.co\/8KnXcRv\/sigla.jpg","fifu_image_alt":"C Language","_vp_format_video_url":"","_vp_image_focal_point":[],"footnotes":""},"categories":[298,65],"tags":[],"class_list":["post-2633","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-programming_languages","category-news"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>C Language - Types of primitive data<\/title>\n<meta name=\"description\" content=\"What are the variables? We must imagine the variables as the drawers of our bedside table, where we can put the things we want to save temporarily.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.sviluppomania.com\/en\/tipi-di-dati-primitivi\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C Language - Types of primitive data\" \/>\n<meta property=\"og:description\" content=\"What are the variables? We must imagine the variables as the drawers of our bedside table, where we can put the things we want to save temporarily.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sviluppomania.com\/en\/tipi-di-dati-primitivi\/\" \/>\n<meta property=\"og:site_name\" content=\"SviluppoMania | Professional blog dedicated to Technology!\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/SviluppoManiaCom\" \/>\n<meta property=\"article:published_time\" content=\"2019-01-30T13:16:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-26T16:47:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i.ibb.co\/8KnXcRv\/sigla.jpg\" \/><meta property=\"og:image\" content=\"https:\/\/i.ibb.co\/8KnXcRv\/sigla.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"1440\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Giuseppe\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/i.ibb.co\/8KnXcRv\/sigla.jpg\" \/>\n<meta name=\"twitter:creator\" content=\"@SviluppoMania\" \/>\n<meta name=\"twitter:site\" content=\"@SviluppoMania\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Giuseppe\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/it\\\/tipi-di-dati-primitivi\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/it\\\/tipi-di-dati-primitivi\\\/\"},\"author\":{\"name\":\"Giuseppe\",\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/it\\\/#\\\/schema\\\/person\\\/35ee31c8bca5145b1121cf5bf55aeea9\"},\"headline\":\"C Language &#8211; Types of primitive data\",\"datePublished\":\"2019-01-30T13:16:22+00:00\",\"dateModified\":\"2022-06-26T16:47:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/it\\\/tipi-di-dati-primitivi\\\/\"},\"wordCount\":618,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/it\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/it\\\/tipi-di-dati-primitivi\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i1.wp.com\\\/i.ibb.co\\\/8KnXcRv\\\/sigla.jpg?w=455&resize=455,245&ssl=1\",\"articleSection\":[\"PROGRAMMING &amp; LANGUAGES\",\"NEWS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.sviluppomania.com\\\/it\\\/tipi-di-dati-primitivi\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/tipi-di-dati-primitivi\\\/\",\"url\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/tipi-di-dati-primitivi\\\/\",\"name\":\"C Language - Types of primitive data\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/tipi-di-dati-primitivi\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/it\\\/tipi-di-dati-primitivi\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i1.wp.com\\\/i.ibb.co\\\/8KnXcRv\\\/sigla.jpg?w=455&resize=455,245&ssl=1\",\"datePublished\":\"2019-01-30T13:16:22+00:00\",\"dateModified\":\"2022-06-26T16:47:48+00:00\",\"description\":\"What are the variables? We must imagine the variables as the drawers of our bedside table, where we can put the things we want to save temporarily.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/tipi-di-dati-primitivi\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[[\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/tipi-di-dati-primitivi\\\/\"]]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/tipi-di-dati-primitivi\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i1.wp.com\\\/i.ibb.co\\\/8KnXcRv\\\/sigla.jpg?w=455&resize=455,245&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i1.wp.com\\\/i.ibb.co\\\/8KnXcRv\\\/sigla.jpg?w=455&resize=455,245&ssl=1\",\"width\":455,\"height\":246,\"caption\":\"C Language\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/tipi-di-dati-primitivi\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linguaggio C &#8211; Tipi di dati primitivi\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/\",\"name\":\"SviluppoMania | Professional blog dedicated to Technology!\",\"description\":\"SviluppoMania | Professional blog dedicated to Technology! Tools - Reviews and much more\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/#organization\",\"name\":\"SviluppoMania.com\",\"url\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.sviluppomania.com\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/SviluppoMania-logo2-_1_.webp\",\"contentUrl\":\"https:\\\/\\\/www.sviluppomania.com\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/SviluppoMania-logo2-_1_.webp\",\"width\":474,\"height\":408,\"caption\":\"SviluppoMania.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/SviluppoManiaCom\",\"https:\\\/\\\/x.com\\\/SviluppoMania\",\"https:\\\/\\\/www.instagram.com\\\/sviluppomania\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UC5CuM88LjzBeC23s2DPdveA\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.sviluppomania.com\\\/it\\\/#\\\/schema\\\/person\\\/35ee31c8bca5145b1121cf5bf55aeea9\",\"name\":\"Giuseppe\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6f251bbff1805114798b101263de100ce8cca6d33f8ffae3d3c1fb316d094926?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6f251bbff1805114798b101263de100ce8cca6d33f8ffae3d3c1fb316d094926?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6f251bbff1805114798b101263de100ce8cca6d33f8ffae3d3c1fb316d094926?s=96&r=g\",\"caption\":\"Giuseppe\"},\"description\":\"Salve, sono un ragazzo di 25 anni, iscritto alla facolt\u00e0 di informatica, appassionato di programmazione e delle nuove news tecnologiche in ambito informatico.\",\"url\":\"https:\\\/\\\/www.sviluppomania.com\\\/en\\\/author\\\/piko\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"C Language - Types of primitive data","description":"What are the variables? We must imagine the variables as the drawers of our bedside table, where we can put the things we want to save temporarily.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.sviluppomania.com\/en\/tipi-di-dati-primitivi\/","og_locale":"en_US","og_type":"article","og_title":"C Language - Types of primitive data","og_description":"What are the variables? We must imagine the variables as the drawers of our bedside table, where we can put the things we want to save temporarily.","og_url":"https:\/\/www.sviluppomania.com\/en\/tipi-di-dati-primitivi\/","og_site_name":"SviluppoMania | Professional blog dedicated to Technology!","article_publisher":"https:\/\/www.facebook.com\/SviluppoManiaCom","article_published_time":"2019-01-30T13:16:22+00:00","article_modified_time":"2022-06-26T16:47:48+00:00","og_image":[{"url":"https:\/\/i.ibb.co\/8KnXcRv\/sigla.jpg","type":"","width":"","height":""},{"url":"https:\/\/i.ibb.co\/8KnXcRv\/sigla.jpg","width":960,"height":1440,"type":"image\/jpeg"}],"author":"Giuseppe","twitter_card":"summary_large_image","twitter_image":"https:\/\/i.ibb.co\/8KnXcRv\/sigla.jpg","twitter_creator":"@SviluppoMania","twitter_site":"@SviluppoMania","twitter_misc":{"Written by":"Giuseppe","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sviluppomania.com\/it\/tipi-di-dati-primitivi\/#article","isPartOf":{"@id":"https:\/\/www.sviluppomania.com\/it\/tipi-di-dati-primitivi\/"},"author":{"name":"Giuseppe","@id":"https:\/\/www.sviluppomania.com\/it\/#\/schema\/person\/35ee31c8bca5145b1121cf5bf55aeea9"},"headline":"C Language &#8211; Types of primitive data","datePublished":"2019-01-30T13:16:22+00:00","dateModified":"2022-06-26T16:47:48+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sviluppomania.com\/it\/tipi-di-dati-primitivi\/"},"wordCount":618,"commentCount":0,"publisher":{"@id":"https:\/\/www.sviluppomania.com\/it\/#organization"},"image":{"@id":"https:\/\/www.sviluppomania.com\/it\/tipi-di-dati-primitivi\/#primaryimage"},"thumbnailUrl":"https:\/\/i1.wp.com\/i.ibb.co\/8KnXcRv\/sigla.jpg?w=455&resize=455,245&ssl=1","articleSection":["PROGRAMMING &amp; LANGUAGES","NEWS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.sviluppomania.com\/it\/tipi-di-dati-primitivi\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.sviluppomania.com\/en\/tipi-di-dati-primitivi\/","url":"https:\/\/www.sviluppomania.com\/en\/tipi-di-dati-primitivi\/","name":"C Language - Types of primitive data","isPartOf":{"@id":"https:\/\/www.sviluppomania.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sviluppomania.com\/en\/tipi-di-dati-primitivi\/#primaryimage"},"image":{"@id":"https:\/\/www.sviluppomania.com\/it\/tipi-di-dati-primitivi\/#primaryimage"},"thumbnailUrl":"https:\/\/i1.wp.com\/i.ibb.co\/8KnXcRv\/sigla.jpg?w=455&resize=455,245&ssl=1","datePublished":"2019-01-30T13:16:22+00:00","dateModified":"2022-06-26T16:47:48+00:00","description":"What are the variables? We must imagine the variables as the drawers of our bedside table, where we can put the things we want to save temporarily.","breadcrumb":{"@id":"https:\/\/www.sviluppomania.com\/en\/tipi-di-dati-primitivi\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":[["https:\/\/www.sviluppomania.com\/en\/tipi-di-dati-primitivi\/"]]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sviluppomania.com\/en\/tipi-di-dati-primitivi\/#primaryimage","url":"https:\/\/i1.wp.com\/i.ibb.co\/8KnXcRv\/sigla.jpg?w=455&resize=455,245&ssl=1","contentUrl":"https:\/\/i1.wp.com\/i.ibb.co\/8KnXcRv\/sigla.jpg?w=455&resize=455,245&ssl=1","width":455,"height":246,"caption":"C Language"},{"@type":"BreadcrumbList","@id":"https:\/\/www.sviluppomania.com\/en\/tipi-di-dati-primitivi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sviluppomania.com\/en\/"},{"@type":"ListItem","position":2,"name":"Linguaggio C &#8211; Tipi di dati primitivi"}]},{"@type":"WebSite","@id":"https:\/\/www.sviluppomania.com\/en\/#website","url":"https:\/\/www.sviluppomania.com\/en\/","name":"SviluppoMania | Professional blog dedicated to Technology!","description":"SviluppoMania | Professional blog dedicated to Technology! Tools - Reviews and much more","publisher":{"@id":"https:\/\/www.sviluppomania.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sviluppomania.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.sviluppomania.com\/en\/#organization","name":"SviluppoMania.com","url":"https:\/\/www.sviluppomania.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sviluppomania.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.sviluppomania.com\/wp-content\/uploads\/2020\/12\/SviluppoMania-logo2-_1_.webp","contentUrl":"https:\/\/www.sviluppomania.com\/wp-content\/uploads\/2020\/12\/SviluppoMania-logo2-_1_.webp","width":474,"height":408,"caption":"SviluppoMania.com"},"image":{"@id":"https:\/\/www.sviluppomania.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/SviluppoManiaCom","https:\/\/x.com\/SviluppoMania","https:\/\/www.instagram.com\/sviluppomania\/","https:\/\/www.youtube.com\/channel\/UC5CuM88LjzBeC23s2DPdveA"]},{"@type":"Person","@id":"https:\/\/www.sviluppomania.com\/it\/#\/schema\/person\/35ee31c8bca5145b1121cf5bf55aeea9","name":"Giuseppe","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/6f251bbff1805114798b101263de100ce8cca6d33f8ffae3d3c1fb316d094926?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/6f251bbff1805114798b101263de100ce8cca6d33f8ffae3d3c1fb316d094926?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6f251bbff1805114798b101263de100ce8cca6d33f8ffae3d3c1fb316d094926?s=96&r=g","caption":"Giuseppe"},"description":"Salve, sono un ragazzo di 25 anni, iscritto alla facolt\u00e0 di informatica, appassionato di programmazione e delle nuove news tecnologiche in ambito informatico.","url":"https:\/\/www.sviluppomania.com\/en\/author\/piko\/"}]}},"_links":{"self":[{"href":"https:\/\/www.sviluppomania.com\/en\/wp-json\/wp\/v2\/posts\/2633","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sviluppomania.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sviluppomania.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sviluppomania.com\/en\/wp-json\/wp\/v2\/users\/71"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sviluppomania.com\/en\/wp-json\/wp\/v2\/comments?post=2633"}],"version-history":[{"count":0,"href":"https:\/\/www.sviluppomania.com\/en\/wp-json\/wp\/v2\/posts\/2633\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.sviluppomania.com\/en\/wp-json\/wp\/v2\/media\/7087"}],"wp:attachment":[{"href":"https:\/\/www.sviluppomania.com\/en\/wp-json\/wp\/v2\/media?parent=2633"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sviluppomania.com\/en\/wp-json\/wp\/v2\/categories?post=2633"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sviluppomania.com\/en\/wp-json\/wp\/v2\/tags?post=2633"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}