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 |
difference between native and cross compilers
how could explain about job profile
What is data structure in c and its types?
What is line in c preprocessor?
what is the difference between malloc() and calloc() function?
what is the difference between declaration ,defenetion and initialization of a variable?
Are the variables argc and argv are always local to main?
What is pointers in c?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
What is the scope of an external variable in c?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5