How can you print HELLO WORLD without using "semicolon"?
Answer Posted / anuj shukla
#include<stdio.h>
void main()
{
if(printf("helloworld"))
{
}
}
| Is This Answer Correct ? | 17 Yes | 6 No |
Post New Answer View All Answers
Write the control statements in C language
What is optimization in c?
What are the header files used in c language?
What is the difference between the local variable and global variable in c?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What is structure padding in c?
What is the difference between malloc calloc and realloc in c?
What 'lex' does?
What is auto keyword in c?
Which are low level languages?
What is the Purpose of 'extern' keyword in a function declaration?
Write a program to print factorial of given number without using recursion?
What is the difference between test design and test case design?
Explain the difference between call by value and call by reference in c language?
How can I find out how much free space is available on disk?