main()
{
int arr[5]={23,67};
printf("%d%d%d",arr[2],arr[3],arr[4]);
}
Answer Posted / vignesh1988i
all wil print the garbage values in the respected
memories... since we only initilized for two locations in
th array.... so other locations in the array wil have
garbage values
| Is This Answer Correct ? | 13 Yes | 9 No |
Post New Answer View All Answers
How to throw some light on the b tree?
What is the sizeof () operator?
What is the meaning of 2d in c?
Explain what is the difference between functions abs() and fabs()?
Explain the difference between getch() and getche() in c?
What is c language & why it is used?
Why is structure important for a child?
Explain how does free() know explain how much memory to release?
What is sorting in c plus plus?
Explain how do you use a pointer to a function?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is the difference between āgā and āgā in C?
What is structure padding in c?
What are types of preprocessor in c?
What's a good way to check for "close enough" floating-point equality?