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
Why do we need functions in c?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
Explain the binary height balanced tree?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
what is uses of .net
What are the loops in c?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is main () in c language?
Write programs for String Reversal & Palindrome check
Why ca not I do something like this?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is the purpose of 'register' keyword?
What is struct node in c?
What are the types of pointers in c?
how many key words availabel in c a) 28 b) 31 c) 32