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
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
How do you write a program which produces its own source code as output?
Define macros.
What is the use of header?
Which node is more powerful and can handle local information processing or graphics processing?
What is an example of structure?
What is a #include preprocessor?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
What is double pointer?
Is null always equal to 0(zero)?
What is assert and when would I use it?
What does the function toupper() do?
What is a const pointer?
What is maximum size of array in c?
In a switch statement, explain what will happen if a break statement is omitted?