Answer Posted / saipriya
To allocate the memory
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
Are the outer parentheses in return statements really optional?
What is void main () in c?
formula to convert 2500mmh2o into m3/hr
Is javascript based on c?
What is the benefit of using an enum rather than a #define constant?
Can we access the array using a pointer in c language?
Which is more efficient, a switch statement or an if else chain?
How do I round numbers?
Is there a way to compare two structure variables?
find the sum of two matrices and WAP for it.
what is the structure pointer?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is pointer and structure in c?