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 |
Are pointers integer?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What's a good way to check for "close enough" floating-point equality?
Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }
What are unions in c?
How to access or modify the const variable in c ?
16 Answers HCL, HP,
What does p mean in physics?
Why is c called a mid-level programming language?
Explain main function in c?
How to delete a node from linked list w/o using collectons?
wat are the two methods for swapping two numbers without using temp variable??
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question