can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / taruna chaudhary
#include<stdio.h>
void main()
{
clrscr();
if("printf(hello pushpendra)")
getch();
}
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
When should a type cast not be used?
How can I read a binary data file properly?
Can a pointer be null?
How can I change their mode to binary?
What is static and volatile in c?
The statement, int(*x[]) () what does in indicate?
Write a code to generate divisors of an integer?
What is #include conio h?
What is zero based addressing?
how can I convert a string to a number?
What is the use of printf() and scanf() functions?
What happens if header file is included twice?
What is string constants?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix