can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / chandanakurukunda
#include<stdio.h>
void main()
{
if(printf("hello"))
{
}
}
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
Explain union. What are its advantages?
Is that possible to store 32768 in an int data type variable?
What are loops c?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
What does void main return?
is it possible to create your own header files?
How can you tell whether two strings are the same?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What is a program flowchart?
How can I use a preprocessorif expression to ?
Explain the difference between exit() and _exit() function?
Why is python slower than c?
Does * p ++ increment p or what it points to?
What is volatile c?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?