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 |
Which type of language is c?
without a terminator how can we print a message in a printf () function.
What is union in c?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
Are global variables static in c?
ATM machine and railway reservation class/object diagram
What is the use of gets and puts?
Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??
write a program to print %d ?
why do we use pointer instead directly acessing the data?
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?