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


Please Help Members By Posting Answers For Below Questions

What is the difference between the local variable and global variable in c?

604


When should you not use a type cast?

761


What is #line?

706


What is register variable in c language?

698


Write a code of a general series where the next element is the sum of last k terms.

676






How are Structure passing and returning implemented by the complier?

809


What is the role of this pointer?

640


The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this

3108


Explain what is a program flowchart and explain how does it help in writing a program?

754


What is the use of sizeof?

653


What is use of bit field?

882


Is there any data type in c with variable size?

738


The statement, int(*x[]) () what does in indicate?

767


how to make a scientific calculater ?

1667


What is an endless loop?

923