main()
{
int arr[5]={23,67};
printf("%d%d%d",arr[2],arr[3],arr[4]);
}
Answer Posted / bsn.teja
till array elements are not given any specific values,they
are supposed to contain garbage values.
here we initialised only 1st two elements of the array.
so output will be garbage values.
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the difference between the local variable and global variable in c?
When should you not use a type cast?
What is #line?
What is register variable in c language?
Write a code of a general series where the next element is the sum of last k terms.
How are Structure passing and returning implemented by the complier?
What is the role of this pointer?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
Explain what is a program flowchart and explain how does it help in writing a program?
What is the use of sizeof?
What is use of bit field?
Is there any data type in c with variable size?
The statement, int(*x[]) () what does in indicate?
how to make a scientific calculater ?
What is an endless loop?