main()
{
int arr[5]={23,67};
printf("%d%d%d",arr[2],arr[3],arr[4]);
}
Answer Posted / guruprasad
first a[0]=23;
a[1]=67;
rest index are assigned 0 0 0.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Between macros and functions,which is better to use and why?
What are two dimensional arrays alternatively called as?
How can you allocate arrays or structures bigger than 64K?
How would you rename a function in C?
What do you mean by keywords in c?
What does the format %10.2 mean when included in a printf statement?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
What is the difference between #include
Is main is user defined function?
What are the two types of functions in c?
What is realloc in c?
Why do we use header files in c?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What are the different types of control structures in programming?
Which are low level languages?