write a c program to print "Welcome" without using semicolon
in the whole program ??
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / kinjal gor
main()
{
CLRSCR();
if(printf("I LOVE MY INDIA"))
GETCH();
}
| Is This Answer Correct ? | 1 Yes | 4 No |
Answer / sagarsp2010
dont no the answer just send an request to me on following
email address :
sagarsp2010@gmail.com
| Is This Answer Correct ? | 7 Yes | 13 No |
Does c have an equivalent to pascals with statement?
What is wrong in this statement?
What is the purpose of clrscr () printf () and getch ()?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
find largest of 3 no
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
can we change the default calling convention in c if yes than how.........?
What does return 1 means in c?
Tell us something about keyword 'auto'.
Are negative numbers true in c?