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
I heard that you have to include stdio.h before calling printf. Why?
why we wont use '&' sing in aceesing the string using scanf
What does *p++ do? What does it point to?
What are the loops in c?
Describe static function with its usage?
What is 'bus error'?
What are enums in c?
What does it mean when a pointer is used in an if statement?
How will you delete a node in DLL?
What is the use of a ‘’ character?
Write a program in c to replace any vowel in a string with z?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
Explain about block scope in c?
What are the different types of endless loops?