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
Where are the auto variables stored?
What is a char c?
Why we use break in c?
When would you use a pointer to a function?
What is the difference between constant pointer and constant variable?
What are disadvantages of C language.
What are terms in math?
Explain output of printf("Hello World"-'A'+'B'); ?
How many header files are in c?
What are # preprocessor operator in c?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What is stack in c?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What is pointer to pointer in c language?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.