write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / manish soni bca 3rd year jaipu
while(printf("welcome"))
{
}
it produce the infinite loop
so plz delete this logic.
or edit it with me
#include<stdio.h>
#include<conio.h>
void main()
{
while(printf("hello"))
getch();
}
| Is This Answer Correct ? | 5 Yes | 6 No |
Post New Answer View All Answers
Why do we use int main instead of void main in c?
What are the uses of a pointer?
Where are the auto variables stored?
What is the g value paradox?
How will you delete a node in DLL?
write a program to create a sparse matrix using dynamic memory allocation.
What is the difference between exit() and _exit() function?
Explain what are the different data types in c?
What is the difference between typedef struct and struct?
What is conio h in c?
why we wont use '&' sing in aceesing the string using scanf
How do I use strcmp?
How do c compilers work?
what do you mean by inline function in C?
swap 2 numbers without using third variable?