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
Explain how can I prevent another program from modifying part of a file that I am modifying?
What are identifiers c?
What does a function declared as pascal do differently?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What are run-time errors?
What are the applications of c language?
How many types of functions are there in c?
What is a good way to implement complex numbers in c?
What is getche() function?
Apart from dennis ritchie who the other person who contributed in design of c language.
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What is a file descriptor in c?
What is this infamous null pointer, anyway?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
Tell me what are bitwise shift operators?