without a terminator how can we print a message in a printf
() function.
Answers were Sorted based on User's Feedback
Answer / vijay
#include<stdio.h>
main()
{
if(Printf("Here is the message without terminator"))
{
}
}
| Is This Answer Correct ? | 19 Yes | 5 No |
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 |
Answer / lucky
#include<stdio.h>
void main()
{
if(printf("hello")==0)
{}
}
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / indrani
#include<stdio.h>
void main()
{
fun(printf("\nCute Ramya !!!!!"));
}
fun(int i)
{
i++;
}
| Is This Answer Correct ? | 5 Yes | 5 No |
Answer / dewanshu goel
#include<stdio.h>
main()
{
if(printf("the message is print without terminator"))
}
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / adesh
#include<stdio.h>
#include<conio.h>
main()
{
if("adesh")
{
}
}
| Is This Answer Correct ? | 7 Yes | 10 No |
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
Is c is a procedural language?
implement OR gate without using any bitwise operator.
what is the differnce between AF_INET and PF_INET?
5 Answers Systems Plus, Wipro,
A stack can be implemented only using array?if not what is used?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
What is wrong with this statement? Myname = 'robin';
how to connect oracle in C/C++.
What is #line in c?
Write a program to print fibonacci series without using recursion?
Can a variable be both static and volatile in c?
what is difference between c and c++