without a terminator how can we print a message in a printf
() function.

Answers were Sorted based on User's Feedback



without a terminator how can we print a message in a printf () function...

Answer / vijay

#include<stdio.h>
main()
{
if(Printf("Here is the message without terminator"))
{
}
}

Is This Answer Correct ?    19 Yes 5 No

without a terminator how can we print a message in a printf () function...

Answer / 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

without a terminator how can we print a message in a printf () function...

Answer / lucky

#include<stdio.h>
void main()
{
if(printf("hello")==0)
{}
}

Is This Answer Correct ?    2 Yes 1 No

without a terminator how can we print a message in a printf () function...

Answer / indrani

#include<stdio.h>

void main()
{
fun(printf("\nCute Ramya !!!!!"));
}
fun(int i)
{
i++;
}

Is This Answer Correct ?    5 Yes 5 No

without a terminator how can we print a message in a printf () function...

Answer / dewanshu goel

#include<stdio.h>
main()
{
if(printf("the message is print without terminator"))
}

Is This Answer Correct ?    2 Yes 2 No

without a terminator how can we print a message in a printf () function...

Answer / guest

using if statement

Is This Answer Correct ?    1 Yes 1 No

without a terminator how can we print a message in a printf () function...

Answer / adesh

#include<stdio.h>
#include<conio.h>
main()
{
if("adesh")
{
}
}

Is This Answer Correct ?    7 Yes 10 No

Post New Answer

More C Interview Questions

void main() { int i=5; printf("%d",i++ + ++i); }

21 Answers   ME,


What is the use of putchar function?

0 Answers  


where does it flourished?

0 Answers   Microsoft,


What is void main ()?

0 Answers  


What is a spanning Tree?

1 Answers   TCS,


What language is c written?

0 Answers  


what is mean by Garbage collection ? Please answer me. Advance thanks.

4 Answers   Excel,


What is a rvalue?

0 Answers   Global Logic,


array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}

12 Answers   Google, Motorola,


What are header files in c programming?

0 Answers  


cavium networks written test pattern ..

0 Answers   Cavium Networks,


What does calloc stand for?

0 Answers  


Categories