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
What is meant by keywords in c?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
What the different types of arrays in c?
int far *near * p; means
What are multibyte characters?
can anyone please tell about the nested interrupts?
How can a program be made to print the line number where an error occurs?
What does %p mean?
What is fflush() function?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
What is the difference between void main and main in c?
write a c program to find the sum of five entered numbers using an array named number
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
can we change the default calling convention in c if yes than how.........?