main()
{
int arr[5]={23,67};
printf("%d%d%d",arr[2],arr[3],arr[4]);
}
Answer Posted / kantilal
000
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
Explain how can you restore a redirected standard stream?
Why main is not a keyword in c?
What is malloc calloc and realloc in c?
What is pass by reference in functions?
Can variables be declared anywhere in c?
What is the significance of an algorithm to C programming?
p*=(++q)++*--p when p=q=1 while(q<=6)
Explain why can’t constant values be used to define an array’s initial size?
What is #error and use of it?
Tell me what is null pointer in c?
Why array is used in c?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
Explain what are run-time errors?
What is structure in c explain with example?
Can you please explain the difference between strcpy() and memcpy() function?