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


Please Help Members By Posting Answers For Below Questions

I heard that you have to include stdio.h before calling printf. Why?

800


why we wont use '&' sing in aceesing the string using scanf

2051


What does *p++ do? What does it point to?

806


What are the loops in c?

760


Describe static function with its usage?

846


What is 'bus error'?

848


What are enums in c?

829


What does it mean when a pointer is used in an if statement?

830


How will you delete a node in DLL?

914


What is the use of a ‘’ character?

796


Write a program in c to replace any vowel in a string with z?

867


Explain can the sizeof operator be used to tell the size of an array passed to a function?

781


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.

1899


Explain about block scope in c?

846


What are the different types of endless loops?

816