How to print "Hi World" without using semi colon?
Answer Posted / saravana kumar
#include<stdio.h>
void main()
{
if(printf("Hi World"))
}
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What does %d do?
What are loops c?
What are the advantages of Macro over function?
What functions are used for dynamic memory allocation in c language?
Is null always equal to 0(zero)?
What does the error 'Null Pointer Assignment' mean and what causes this error?
what do the 'c' and 'v' in argc and argv stand for?
Does * p ++ increment p or what it points to?
Write a program to swap two numbers without using a temporary variable?
What 'lex' does?
What is difference between structure and union in c programming?
What is type qualifiers?
What is define c?
In a header file whether functions are declared or defined?
Explain the properties of union.