without a terminator how can we print a message in a printf
() function.
Answer Posted / dharmendra
we can make without using if,for,while statments.....
main()
{
fun(printf("\nCute Ramya !!!!!"));
}
fun(int i)
{
;;;;; i++
}
| Is This Answer Correct ? | 7 Yes | 5 No |
Post New Answer View All Answers
Write the control statements in C language
Describe wild pointers in c?
Can two or more operators such as and be combined in a single line of program code?
Are the variables argc and argv are always local to main?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
C language questions for civil engineering
What was noalias and what ever happened to it?
What are types of preprocessor in c?
What is #define?
What is the purpose of void in c?
Write a program to reverse a linked list in c.
Why & is used in c?
Why do we use return in c?
Is it possible to execute code even after the program exits the main() function?
what are # pragma staments?