without a terminator how can we print a message in a printf
() function.
Answer Posted / dewanshu goel
#include<stdio.h>
main()
{
if(printf("the message is print without terminator"))
}
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is the advantage of c?
How can I invoke another program or command and trap its output?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What is the difference between malloc calloc and realloc in c?
When the macros gets expanded?
What is structure in c definition?
Why isn't any of this standardized in c? Any real program has to do some of these things.
Do pointers take up memory?
What is the difference between printf and scanf in c?
Explain pointer. What are function pointers in C?
What does sizeof function do?
What is a void pointer? When is a void pointer used?
Write the Program to reverse a string using pointers.
Why does notstrcat(string, "!");Work?
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