main()
{
int x, arr[8]={11,22,33,44,55,66,77,88};
x=(arr+2)[3];
printf(ā%dā,x);
}
Answer Posted / priya
i want answer for this
| Is This Answer Correct ? | 17 Yes | 3 No |
Post New Answer View All Answers
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Why & is used in scanf in c?
What is masking?
How are Structure passing and returning implemented by the complier?
Which built-in library function can be used to match a patter from the string?
Tell me what is null pointer in c?
In a switch statement, explain what will happen if a break statement is omitted?
How do you define a function?
Why is c fast?
What is f'n in math?
Is c is a middle level language?
Explain the priority queues?
Explain what are header files and explain what are its uses in c programming?
What is clrscr ()?
what are bit fields in c?