printf("%d",(printf("Hello")); What it returns?
Answer Posted / karna
hello5
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Is c is a high level language?
How can I call fortran?
Can we compile a program without main() function?
How can you increase the size of a statically allocated array?
What does sizeof function do?
How many parameters should a function have?
What are extern variables in c?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
What is the scope of local variable in c?
Why do we use static in c?
If fflush wont work, what can I use to flush input?
Is c is a low level language?
What is actual argument?
Which programming language is best for getting job 2020?
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