main()
{
int arr[5]={23,67};
printf("%d%d%d",arr[2],arr[3],arr[4]);
}
Answer Posted / abhisheksingh462
000
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
When would you use a pointer to a function?
What is difference between && and & in c?
How can you restore a redirected standard stream?
How are portions of a program disabled in demo versions?
What are the differences between Structures and Arrays?
Difference between macros and inline functions? Can a function be forced as inline?
How can you invoke another program from within a C program?
Explain what is the difference between a string and an array?
How is a macro different from a function?
while initialization of array why we use a[][2] why not a[2][]...?
What is wrong with this declaration?
What are extern variables in c?
What are linker error?
What is the use of void pointer and null pointer in c language?
What is null in c?