<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title>Bing: Array Questions in C Programming</title><link>http://www.bing.com:80/search?q=Array+Questions+in+C+Programming</link><description>Search results</description><image><url>http://www.bing.com:80/s/a/rsslogo.gif</url><title>Array Questions in C Programming</title><link>http://www.bing.com:80/search?q=Array+Questions+in+C+Programming</link></image><copyright>Copyright © 2026 Microsoft. All rights reserved. These XML results may not be used, reproduced or transmitted in any manner or for any purpose other than rendering Bing results within an RSS aggregator for your personal, non-commercial use. Any other use of these results requires express written permission from Microsoft Corporation. By accessing this web page or using these results in any manner whatsoever, you agree to be bound by the foregoing restrictions.</copyright><item><title>How do I determine the size of my array in C? - Stack Overflow</title><link>https://stackoverflow.com/questions/37538/how-do-i-determine-the-size-of-my-array-in-c</link><description>An array sent as a parameter to a function is treated as a pointer, so sizeof will return the pointer's size, instead of the array's. Thus, inside functions this method does not work. Instead, always pass an additional parameter size_t size indicating the number of elements in the array. Test: ... Output (in a 64-bit Linux OS):</description><pubDate>Wed, 22 Apr 2026 01:54:00 GMT</pubDate></item><item><title>How do I declare and initialize an array in Java? - Stack Overflow</title><link>https://stackoverflow.com/questions/1200621/how-do-i-declare-and-initialize-an-array-in-java</link><description>The third way of initializing is useful when you declare an array first and then initialize it, pass an array as a function argument, or return an array. The explicit type is required.</description><pubDate>Tue, 21 Apr 2026 21:29:00 GMT</pubDate></item><item><title>How to create an array containing 1...N</title><link>https://stackoverflow.com/questions/3746725/how-to-create-an-array-containing-1-n</link><description>Why go through the trouble of Array.apply(null, {length: N}) instead of just Array(N)? After all, both expressions would result an an N -element array of undefined elements. The difference is that in the former expression, each element is explicitly set to undefined, whereas in the latter, each element was never set.</description><pubDate>Sat, 18 Apr 2026 07:14:00 GMT</pubDate></item><item><title>Loop (for each) over an array in JavaScript - Stack Overflow</title><link>https://stackoverflow.com/questions/9329446/loop-for-each-over-an-array-in-javascript</link><description>How can I loop through all the entries in an array using JavaScript?</description><pubDate>Tue, 21 Apr 2026 03:36:00 GMT</pubDate></item><item><title>Loop through an array of strings in Bash? - Stack Overflow</title><link>https://stackoverflow.com/questions/8880603/loop-through-an-array-of-strings-in-bash</link><description>Without them, the for loop will break up the array by substrings separated by any spaces within the strings instead of by whole string elements within the array. ie: if you had declare -a arr=("element 1" "element 2" "element 3"), then for i in ${arr[@]} would mistakenly iterate 6 times since each string becomes 2 substrings separated by the ...</description><pubDate>Fri, 17 Apr 2026 19:40:00 GMT</pubDate></item><item><title>What’s the difference between “new Array()” and “[]” (empty square ...</title><link>https://stackoverflow.com/questions/931872/what-s-the-difference-between-new-array-and-empty-square-brackets-whe</link><description>Another difference is that when using new Array() you're able to set the size of the array, which affects the stack size. This can be useful if you're getting stack overflows (Performance of Array.push vs Array.unshift) which is what happens when the size of the array exceeds the size of the stack, and it has to be re-created.</description><pubDate>Tue, 21 Apr 2026 18:45:00 GMT</pubDate></item><item><title>Get all unique values in a JavaScript array (remove duplicates)</title><link>https://stackoverflow.com/questions/1960473/get-all-unique-values-in-a-javascript-array-remove-duplicates</link><description>I have an array of numbers that I need to make sure are unique. I found the code snippet below on the Internet, and it works great until the array has a zero in it. I found this other script here on</description><pubDate>Tue, 21 Apr 2026 21:58:00 GMT</pubDate></item><item><title>How to randomize (shuffle) a JavaScript array? - Stack Overflow</title><link>https://stackoverflow.com/questions/2450954/how-to-randomize-shuffle-a-javascript-array</link><description>Depending on the implementation of sort, an element at the lowest array index might require more comparisons in order to get to the highest index than the element next to the highest index.</description><pubDate>Tue, 21 Apr 2026 17:19:00 GMT</pubDate></item><item><title>How can I remove a specific item from an array in JavaScript?</title><link>https://stackoverflow.com/questions/5767325/how-can-i-remove-a-specific-item-from-an-array-in-javascript</link><description>How do I remove a specific value from an array? Something like: array.remove(value); Constraints: I have to use core JavaScript. Frameworks are not allowed.</description><pubDate>Tue, 21 Apr 2026 19:13:00 GMT</pubDate></item><item><title>How do I declare a 2d array in C++ using new? - Stack Overflow</title><link>https://stackoverflow.com/questions/936687/how-do-i-declare-a-2d-array-in-c-using-new</link><description>See this answer. Compilers like gcc that allow variable-length arrays as an extension to C++ can use new as shown here to get fully runtime-variable array dimension functionality like C99 allows, but portable ISO C++ is limited to only the first dimension being variable. Another efficient option is to do the 2d indexing manually into a big 1d array, as another answer shows, allowing the same ...</description><pubDate>Wed, 22 Apr 2026 01:04:00 GMT</pubDate></item></channel></rss>