without a terminator how can we print a message in a printf
() function.
Answer Posted / lucky
#include<stdio.h>
void main()
{
if(printf("hello")==0)
{}
}
Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
How to draw the flowchart for structure programs?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
What are the difference between a free-standing and a hosted environment?
How many identifiers are there in c?
How can I list all of the predefined identifiers?
Is c pass by value or reference?
Tell me with an example the self-referential structure?
What are the c keywords?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Tell us bitwise shift operators?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
Explain goto?
in iso what are the common technological language?
What is structure and union in c?