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 meant by realloc()?

0 Answers  


How will you allocate memory to double a pointer?

1 Answers  


what is object oriental programing?

1 Answers  


Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database

2 Answers   TCS, Unisys, Webyog,


what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason

3 Answers  






Write a program to use switch statement.

0 Answers   Agilent, Integreon, ZS Associates,


please send me the code for multiplying sparse matrix using c

0 Answers  


logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............

2 Answers   Infosys,


What is else if ladder?

0 Answers  


With the help of using classes, write a program to add two numbers.

0 Answers   TCS,


#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā€œ%dā€ ,a[i]); }

8 Answers  


Explain can static variables be declared in a header file?

0 Answers  


Categories