main()
{
int x, arr[8]={11,22,33,44,55,66,77,88};
x=(arr+2)[3];
printf(ā%dā,x);
}
Answer Posted / sathya
answer is 44
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Explain 'bus error'?
How do we declare variables in c?
Explain what is the best way to comment out a section of code that contains comments?
What is wild pointer in c?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What is a header file?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
Explain what is output redirection?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
what is the structure pointer?
why do some people write if(0 == x) instead of if(x == 0)?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Explain a file operation in C with an example.
Why is it important to memset a variable, immediately after allocating memory to it ?
`write a program to display the recomended action depends on a color of trafic light using nested if statments