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
Explain what does a function declared as pascal do differently?
How do c compilers work?
What is static and auto variables in c?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What does sizeof return c?
How can I automatically locate a programs configuration files in the same directory as the executable?
How does sizeof know array size?
What does the error message "DGROUP exceeds 64K" mean?
What is the difference between #include and #include 'file' ?
What is substring in c?
What is the heap in c?
What is the significance of c program algorithms?
Differentiate between a structure and a union.