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
all c language question
Write a program to check palindrome number in c programming?
Why header files are used?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What is the advantage of using #define to declare a constant?
Is it acceptable to declare/define a variable in a c header?
Explain the difference between ++u and u++?
Which is best book for data structures in c?
What is the use of gets and puts?
What is a static variable in c?
List some basic data types in c?
int far *near * p; means
What is an auto variable in c?
What is wrong in this statement? scanf(ā%dā,whatnumber);
what is different between auto and local static? why should we use local static?