Kavya TKnowledge Contributor
What is the output of the program #include<stdio.h> int main() { int a[5] = {2, 3}; printf("%d, %d, %d\n", a[2], a[3], a[4]); return 0; }
What is the output of the program #include<stdio.h> int main() { int a[5] = {2, 3}; printf("%d, %d, %d\n", a[2], a[3], a[4]); return 0; }
The output of the following ‘C’ program.
main()
{
int a[5]={2,3};
printf(“\n%d%d%d”,a[2],a[3],a[4]);
Output:-
000.