{"id":15078,"date":"2024-03-15T10:30:14","date_gmt":"2024-03-15T10:30:14","guid":{"rendered":"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/"},"modified":"2025-08-06T15:33:57","modified_gmt":"2025-08-06T15:33:57","slug":"how-to-add-elements-to-an-array-in-the-c-language","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/","title":{"rendered":"How to add elements to an array in the C language?"},"content":{"rendered":"<p>In the C language, the size of an array is fixed and cannot be directly added to. However, you can achieve the effect of adding elements to an array by creating a new array and copying the elements from the original array and the new element into the new array. The specific steps are as follows:<\/p>\n<ol>\n<li>Declare the original array and a new element: Assume the original array is arr and the new element is newElement.<\/li>\n<li>Create a new array called newArr with a size one more than the original array arr: int newArr[length + 1];<\/li>\n<li>Copy the elements from the original array &#8216;arr&#8217; to the new array &#8216;newArr&#8217; by iterating through a for loop, assigning the value of &#8216;arr[i]&#8217; to &#8216;newArr[i]&#8217;.<\/li>\n<li>Add the new element newElement to the last position in the new array newArr: assign the value of newElement to newArr[length].<\/li>\n<li>Replace the original array arr with a new array newArr by assigning the address of newArr to arr, like this: arr = newArr;.<\/li>\n<li>Free the memory of the original array &#8220;arr&#8221; by using the &#8220;free()&#8221; function to release the memory space pointed to by &#8220;arr&#8221;.<\/li>\n<\/ol>\n<p>Here is a sample code:<\/p>\n<pre class=\"post-pre\"><code><span class=\"hljs-meta\">#<span class=\"hljs-keyword\">include<\/span> <span class=\"hljs-string\">&lt;stdio.h&gt;<\/span><\/span>\r\n<span class=\"hljs-meta\">#<span class=\"hljs-keyword\">include<\/span> <span class=\"hljs-string\">&lt;stdlib.h&gt;<\/span><\/span>\r\n\r\n<span class=\"hljs-type\">int<\/span> <span class=\"hljs-title function_\">main<\/span><span class=\"hljs-params\">()<\/span> {\r\n    <span class=\"hljs-type\">int<\/span> length = <span class=\"hljs-number\">5<\/span>; <span class=\"hljs-comment\">\/\/ \u539f\u6570\u7ec4\u7684\u5927\u5c0f\u4e3a5<\/span>\r\n    <span class=\"hljs-type\">int<\/span> *arr = (<span class=\"hljs-type\">int<\/span> *)<span class=\"hljs-built_in\">malloc<\/span>(length * <span class=\"hljs-keyword\">sizeof<\/span>(<span class=\"hljs-type\">int<\/span>)); <span class=\"hljs-comment\">\/\/ \u52a8\u6001\u5206\u914d\u5185\u5b58<\/span>\r\n    <span class=\"hljs-type\">int<\/span> newElement = <span class=\"hljs-number\">6<\/span>; <span class=\"hljs-comment\">\/\/ \u65b0\u5143\u7d20\u7684\u503c\u4e3a6<\/span>\r\n\r\n    <span class=\"hljs-comment\">\/\/ \u521d\u59cb\u5316\u539f\u6570\u7ec4arr<\/span>\r\n    <span class=\"hljs-keyword\">for<\/span> (<span class=\"hljs-type\">int<\/span> i = <span class=\"hljs-number\">0<\/span>; i &lt; length; i++) {\r\n        arr[i] = i + <span class=\"hljs-number\">1<\/span>;\r\n    }\r\n\r\n    <span class=\"hljs-comment\">\/\/ \u521b\u5efa\u4e00\u4e2a\u65b0\u7684\u6570\u7ec4newArr\uff0c\u5927\u5c0f\u4e3a\u539f\u6570\u7ec4arr\u7684\u5927\u5c0f\u52a01<\/span>\r\n    <span class=\"hljs-type\">int<\/span> *newArr = (<span class=\"hljs-type\">int<\/span> *)<span class=\"hljs-built_in\">malloc<\/span>((length + <span class=\"hljs-number\">1<\/span>) * <span class=\"hljs-keyword\">sizeof<\/span>(<span class=\"hljs-type\">int<\/span>));\r\n\r\n    <span class=\"hljs-comment\">\/\/ \u590d\u5236\u539f\u6570\u7ec4arr\u7684\u5143\u7d20\u5230\u65b0\u6570\u7ec4newArr\u4e2d<\/span>\r\n    <span class=\"hljs-keyword\">for<\/span> (<span class=\"hljs-type\">int<\/span> i = <span class=\"hljs-number\">0<\/span>; i &lt; length; i++) {\r\n        newArr[i] = arr[i];\r\n    }\r\n\r\n    <span class=\"hljs-comment\">\/\/ \u5728\u65b0\u6570\u7ec4newArr\u7684\u6700\u540e\u4e00\u4e2a\u4f4d\u7f6e\u6dfb\u52a0\u65b0\u5143\u7d20newElement<\/span>\r\n    newArr[length] = newElement;\r\n\r\n    <span class=\"hljs-comment\">\/\/ \u4f7f\u7528\u65b0\u6570\u7ec4newArr\u66ff\u6362\u539f\u6570\u7ec4arr<\/span>\r\n    arr = newArr;\r\n\r\n    <span class=\"hljs-comment\">\/\/ \u8f93\u51fa\u65b0\u6570\u7ec4arr\u7684\u5143\u7d20<\/span>\r\n    <span class=\"hljs-keyword\">for<\/span> (<span class=\"hljs-type\">int<\/span> i = <span class=\"hljs-number\">0<\/span>; i &lt; length + <span class=\"hljs-number\">1<\/span>; i++) {\r\n        <span class=\"hljs-built_in\">printf<\/span>(<span class=\"hljs-string\">\"%d \"<\/span>, arr[i]);\r\n    }\r\n\r\n    <span class=\"hljs-comment\">\/\/ \u91ca\u653e\u539f\u6570\u7ec4arr\u7684\u5185\u5b58<\/span>\r\n    <span class=\"hljs-built_in\">free<\/span>(arr);\r\n\r\n    <span class=\"hljs-keyword\">return<\/span> <span class=\"hljs-number\">0<\/span>;\r\n}\r\n<\/code><\/pre>\n<p>Running the above code will output: 1 2 3 4 5 6, indicating that the new element 6 was successfully added to the array arr.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the C language, the size of an array is fixed and cannot be directly added to. However, you can achieve the effect of adding elements to an array by creating a new array and copying the elements from the original array and the new element into the new array. The specific steps are as [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[1],"tags":[453,1402,299,1404,1403],"class_list":["post-15078","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-development","tag-guide","tag-programming","tag-technology","tag-tutorial"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to add elements to an array in the C language? - Blog - Silicon Cloud<\/title>\n<meta name=\"description\" content=\"Learn about how to add elements to an array in the c language?. Comprehensive guide with examples and best practices.\" \/>\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.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to add elements to an array in the C language?\" \/>\n<meta property=\"og:description\" content=\"Learn about how to add elements to an array in the c language?. Comprehensive guide with examples and best practices.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-15T10:30:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-06T15:33:57+00:00\" \/>\n<meta name=\"author\" content=\"Benjamin Taylor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:site\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Benjamin Taylor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/\"},\"author\":{\"name\":\"Benjamin Taylor\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/ac801fe9549a25960ce48aa2e0a691c9\"},\"headline\":\"How to add elements to an array in the C language?\",\"datePublished\":\"2024-03-15T10:30:14+00:00\",\"dateModified\":\"2025-08-06T15:33:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/\"},\"wordCount\":223,\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"keywords\":[\"Development\",\"guide\",\"programming\",\"technology\",\"tutorial\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/\",\"name\":\"How to add elements to an array in the C language? - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\"},\"datePublished\":\"2024-03-15T10:30:14+00:00\",\"dateModified\":\"2025-08-06T15:33:57+00:00\",\"description\":\"Learn about how to add elements to an array in the c language?. Comprehensive guide with examples and best practices.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.silicloud.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to add elements to an array in the C language?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"name\":\"Silicon Cloud Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\",\"name\":\"Silicon Cloud Blog\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"contentUrl\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"width\":1024,\"height\":1024,\"caption\":\"Silicon Cloud Blog\"},\"image\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\",\"https:\/\/twitter.com\/SiliCloudGlobal\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/ac801fe9549a25960ce48aa2e0a691c9\",\"name\":\"Benjamin Taylor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ec2e3d3e2d525fd148047c4520ae7c1cdccd1f4b48a1a488422b31f04f345c14?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ec2e3d3e2d525fd148047c4520ae7c1cdccd1f4b48a1a488422b31f04f345c14?s=96&d=mm&r=g\",\"caption\":\"Benjamin Taylor\"},\"url\":\"https:\/\/www.silicloud.com\/blog\/author\/benjamintaylor\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to add elements to an array in the C language? - Blog - Silicon Cloud","description":"Learn about how to add elements to an array in the c language?. Comprehensive guide with examples and best practices.","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.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/","og_locale":"en_US","og_type":"article","og_title":"How to add elements to an array in the C language?","og_description":"Learn about how to add elements to an array in the c language?. Comprehensive guide with examples and best practices.","og_url":"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/","og_site_name":"Blog - Silicon Cloud","article_publisher":"https:\/\/www.facebook.com\/SiliCloudGlobal\/","article_published_time":"2024-03-15T10:30:14+00:00","article_modified_time":"2025-08-06T15:33:57+00:00","author":"Benjamin Taylor","twitter_card":"summary_large_image","twitter_creator":"@SiliCloudGlobal","twitter_site":"@SiliCloudGlobal","twitter_misc":{"Written by":"Benjamin Taylor","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/#article","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/"},"author":{"name":"Benjamin Taylor","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/ac801fe9549a25960ce48aa2e0a691c9"},"headline":"How to add elements to an array in the C language?","datePublished":"2024-03-15T10:30:14+00:00","dateModified":"2025-08-06T15:33:57+00:00","mainEntityOfPage":{"@id":"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/"},"wordCount":223,"publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"keywords":["Development","guide","programming","technology","tutorial"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/","url":"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/","name":"How to add elements to an array in the C language? - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/#website"},"datePublished":"2024-03-15T10:30:14+00:00","dateModified":"2025-08-06T15:33:57+00:00","description":"Learn about how to add elements to an array in the c language?. Comprehensive guide with examples and best practices.","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/blog\/how-to-add-elements-to-an-array-in-the-c-language\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.silicloud.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to add elements to an array in the C language?"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/blog\/#website","url":"https:\/\/www.silicloud.com\/blog\/","name":"Silicon Cloud Blog","description":"","publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.silicloud.com\/blog\/#organization","name":"Silicon Cloud Blog","url":"https:\/\/www.silicloud.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","contentUrl":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","width":1024,"height":1024,"caption":"Silicon Cloud Blog"},"image":{"@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/SiliCloudGlobal\/","https:\/\/twitter.com\/SiliCloudGlobal"]},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/ac801fe9549a25960ce48aa2e0a691c9","name":"Benjamin Taylor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ec2e3d3e2d525fd148047c4520ae7c1cdccd1f4b48a1a488422b31f04f345c14?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ec2e3d3e2d525fd148047c4520ae7c1cdccd1f4b48a1a488422b31f04f345c14?s=96&d=mm&r=g","caption":"Benjamin Taylor"},"url":"https:\/\/www.silicloud.com\/blog\/author\/benjamintaylor\/"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/15078","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/comments?post=15078"}],"version-history":[{"count":1,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/15078\/revisions"}],"predecessor-version":[{"id":48524,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/15078\/revisions\/48524"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/media?parent=15078"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/categories?post=15078"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/tags?post=15078"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}