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
Why c language?
What is keyword with example?
What is the best way to store flag values in a program?
How can I recover the file name given an open stream or file descriptor?
Explain do array subscripts always start with zero?
Are the expressions * ptr ++ and ++ * ptr same?
Explain what is the stack?
What are valid signatures for the Main function?
Explain how can I convert a string to a number?
How do I determine whether a character is numeric, alphabetic, and so on?
What are the advantages and disadvantages of pointers?
When should a type cast not be used?
What is the use of ?
Is c is a high level language?
What is a const pointer in c?