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 does struct node * mean?
please send me the code for multiplying sparse matrix using c
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
What is a char in c?
what are bit fields in c?
what is the basis for selection of arrays or pointers as data structure in a program
What is bash c?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What does volatile do?
Why c is called top down?
Explain what is a pragma?
Explain the red-black trees?
What are disadvantages of C language.
How can I prevent another program from modifying part of a file that I am modifying?