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
Without Computer networks, Computers will be half the use. Comment.
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What are 3 types of structures?
how to write optimum code to divide a 50 digit number with a 25 digit number??
how do you execute a c program in unix.
Why is c called a mid-level programming language?
What is the data segment that is followed by c?
What are header files? What are their uses?
write a program to display all prime numbers
What is scope rule of function in c?
Define macros.
Why is extern used in c?
What is an lvalue?
code for find determinent of amatrix
Can we access array using pointer in c language?