without a terminator how can we print a message in a printf
() function.
Answer Posted / indrani
#include<stdio.h>
void main()
{
fun(printf("\nCute Ramya !!!!!"));
}
fun(int i)
{
i++;
}
| Is This Answer Correct ? | 5 Yes | 5 No |
Post New Answer View All Answers
Do you know the purpose of 'register' keyword?
Ow can I insert or delete a line (or record) in the middle of a file?
Can math operations be performed on a void pointer?
Place the #include statement must be written in the program?
What are qualifiers in c?
what value is returned to operating system after program execution?
Write a factorial program using C.
What are the different types of linkage exist in c?
What is an operator?
Describe how arrays can be passed to a user defined function
What is the difference between āgā and āgā in C?
Why we use int main and void main?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
how should functions be apportioned among source files?
What do you mean by dynamic memory allocation in c?