IHYPRESS PROGRAMMING
Tutorials and C programs with code and output for beginners
c programming
44,427 Total Pageviews
HOME | ASP | C | CSS | GNUPLOT | HTML | JAVASCRIPT | PERL | PHP | PYTHON | RUBY | SVG
COne Dimensional Arrays : Variable Length Arrays
<07.14>
/* Variable Length Arrays */ #include <stdio.h> int main(void) { int size; printf("Enter the size of the array > "); scanf("%d", &size); int myarray[size]; //declaration after the first executable (C99+ only) printf("Enter %d integer numbers separated by spaces > ", size); for (int i = 0; i < size; ++i) { scanf("%d", &myarray[i]); } //printing the elements of the array for (int i = 0; i < size; ++i) { printf("%d ", myarray[i]); } return (0); }
Hergestellt in Deutschland / Made in Germany
Enter the size of the array > 6 Enter 6 integer numbers separated by spaces > -453 76 23 -60 124 91 -453 76 23 -60 124 91
 
COPYRIGHT © 2015-2025 IHY PRESS Frankfurt am Main 60329 Deutschland
eXTReMe Tracker - Free Website Statistics