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


Please Help Members By Posting Answers For Below Questions

What is the purpose of main() function?

648


What is the purpose of 'register' keyword?

680


Which is an example of a structural homology?

769


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

620


What are the similarities between c and c++?

588






What are the types of pointers?

594


Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?

2049


How to get string length of given string in c?

599


What are lookup tables in c?

540


What is calloc in c?

652


What is a function simple definition?

604


what is recursion in C

601


Where are some collections of useful code fragments and examples?

703


What is the size of structure pointer in c?

603


What is c definition?

735