358 views

1 Answer

1 votes
1 votes
Memory is allocated for this array is at compile time.

Related questions

0 votes
0 votes
0 answers
2
Kaushal Sanadhya asked Oct 4, 2018
491 views
#include <stdio.h>int main(){ int i = 3; printf("%d", (++i)++); return 0;}Why does the above code is giving error?
0 votes
0 votes
1 answer
3
sumit_kumar asked May 1, 2018
2,457 views
Main (){Int x,y , z;X=y=z=1;Z=++x||++y&&++z;Printf ("x=%d y=%d z=%d",x,y,z);}
0 votes
0 votes
2 answers
4
Lakshman Bhaiya asked Apr 21, 2018
2,605 views
Q) What is the output of the following C Program fragment#include<stdio.h>int main(){int a = 4, b = 3;printf("%d",a+++++b);return 0;} A) 7 B) 8 C) 9 ...