What is the return type of sizeof?
No Answer is Posted For this Question
Be the First to Post Answer
What is c definition?
How many header files are in c?
who invented c
What is optimization in c?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
What is oops c?
define c
how to generate sparse matrix in c
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
To find whether a number is even or odd without using any conditional operator??
12 Answers College School Exams Tests, IBM,
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
Are there any problems with performing mathematical operations on different variable types?