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 is realloc in c?
how to make a scientific calculater ?
What is quick sort in c?
How many types of errors are there in c language? Explain
Are pointers integer?
#include
How to draw the flowchart for structure programs?
What does a pointer variable always consist of?
Can you write a programmer for FACTORIAL using recursion?
What is an operator?
What 'lex' does?
Write a program to show the change in position of a cursor using c
Write a code to generate a series where the next element is the sum of last k terms.
Why is it important to memset a variable, immediately after allocating memory to it ?
How will you declare an array of three function pointers where each function receives two ints and returns a float?