New to C, thanks a lot for help.
Is it possible to define an array in C without either specifying its size or initializing it.
For example, can I prompt a u
Yes, absolutely. C99 introduced the VLA or Variable Length Array. Some simple code would be like such:
#include int main (void) { int arraysize; printf("How bid do you want your array to be?\n"); scanf("%d",&arraysize); int ar[arraysize]; return 0; }