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

Explain what are the __date__ and __time__ preprocessor commands?

0 Answers  


Is array a primitive data type in c?

0 Answers  


What is dynamic dispatch in c++?

0 Answers  


What is table lookup in c?

0 Answers  


Explain the difference between getch() and getche() in c?

0 Answers  






Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?

0 Answers   Celstream,


main() { int i; printf("%d",scanf"%d",&i))//if the input is 12 24 34 then wat will be the output }

2 Answers  


1 232 34543 4567654 can anyone tell me how to slove this c question

6 Answers  


difference between the array and linked list general difference related to memory

2 Answers  


Write a program to compare two strings without using the strcmp() function

42 Answers   Accenture, Arba Minch University,


find second largest element in array w/o using sorting techniques? use onle one for loop.

15 Answers   BitWise, Zycus Infotech,


difference between ordinary variable and pointer in C?

2 Answers  


Categories