main()
{
int arr[5]={23,67};
printf("%d%d%d",arr[2],arr[3],arr[4]);
}
Answer Posted / vikas upendra
The rest will be initialized to zero ....so it'll be 000 ..
| Is This Answer Correct ? | 25 Yes | 4 No |
Post New Answer View All Answers
Can the “if” function be used in comparing strings?
What is array within structure?
When should structures be passed by values or by references?
Can you please explain the difference between malloc() and calloc() function?
What are the advantages of using macro in c language?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What does stand for?
Why is main function so important?
Can you define which header file to include at compile time?
What is wrong with this program statement? void = 10;
How can I sort a linked list?
What are the basic data types associated with c?
Tell me when is a void pointer used?
What is logical error?
What are run-time errors?