how can we print hellow world programme without using semicolon
Answer Posted / rohit kakade
#include<stdio.h>
#include<conio.h>
void main(void)
{
while(printf("HellO")==0)
getch();
}
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
What is the purpose of main() function?
Why clrscr is used after variable declaration?
What is ## preprocessor operator in c?
What is the difference between a string and an array?
int far *near * p; means
List some applications of c programming language?
How to define structures? ·
Write a program to check prime number in c programming?
Describe the difference between = and == symbols in c programming?
How to delete a node from linked list w/o using collectons?
What is the difference between if else and switchstatement
Why header file is used in c?
what is the function of pragma directive in c?
What is structure in c language?
Is there any possibility to create customized header file with c programming language?