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 are the three constants used in c?
Is c is a low level language?
Process by which one bit pattern in to another by bit wise operation is?
What is a protocol in c?
Explain the difference between the local variable and global variable in c?
What is multidimensional arrays
What are the parts of c program?
Why we not create function inside function.
Can i use “int” data type to store the value 32768? Why?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What is calloc()?
Can we declare function inside main?
What are enumerated types?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above