Answer Posted / satheesh
a)=
The highest priority out of the above is ++,then comes
+,then==, and last priority for =.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Explain the difference between malloc() and calloc() function?
Are bit fields portable?
Explain what is the concatenation operator?
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
What is a function in c?
What is the benefit of using const for declaring constants?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
Explain the difference between structs and unions in c?
Explain the use of #pragma exit?
i have a written test for microland please give me test pattern
Explain what is the general form of a c program?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
How can I find the modification date of a file?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
Why pointers are used?