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

What is difference between structure and union in c programming?

0 Answers  


how to find anagram without using string functions using only loops in c programming

0 Answers  


what are advantages of U D F?

1 Answers   Google,


how many argument we can pas in in a function

25 Answers   CTS,


What does %d do in c?

0 Answers  






What is time complexity c?

0 Answers  


Can you mix old-style and new-style function syntax?

0 Answers  


shorting algorithmS

0 Answers   Wipro,


What is the purpose of macro in C language?

0 Answers   Fidelity,


what is ur strangth & weekness

0 Answers   Cognizant, LG Soft, NetEnrich,


What are the key features of C?

6 Answers  


2. What does static variable mean?

2 Answers  


Categories