main()
{
int arr[5]={23,67};
printf("%d%d%d",arr[2],arr[3],arr[4]);
}
Answer Posted / jaga
in linux it will give garbage values...
in unix it will give 000(automatically initialized to 0)
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
What are categories used for in c?
Write a program to use switch statement.
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
#include
What does the function toupper() do?
What is volatile keyword in c?
Explain modulus operator. What are the restrictions of a modulus operator?
Should I learn c before c++?
Describe dynamic data structure in c programming language?
Do you have any idea about the use of "auto" keyword?
What are the 5 data types?
Which type of language is c?
Explain the binary height balanced tree?
Can 'this' pointer by used in the constructor?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?