write a c program to print "Welcome" without using semicolon
in the whole program ??

Answers were Sorted based on User's Feedback



write a c program to print "Welcome" without using semicolon in the whole program ?? ..

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

write a c program to print "Welcome" without using semicolon in the whole program ?? ..

Answer / manikandan

while(printf("welcome"))
{
}

Is This Answer Correct ?    13 Yes 16 No

write a c program to print "Welcome" without using semicolon in the whole program ?? ..

Answer / kinjal gor

main()
{
CLRSCR();
if(printf("I LOVE MY INDIA"))
GETCH();
}

Is This Answer Correct ?    1 Yes 4 No

write a c program to print "Welcome" without using semicolon in the whole program ?? ..

Answer / upendra

main()
{
if(printf("welcome"))
}
}





]

Is This Answer Correct ?    0 Yes 5 No

write a c program to print "Welcome" without using semicolon in the whole program ?? ..

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

Post New Answer

More C Interview Questions

What is difference between && and & in c?

0 Answers  


In C programming, how do you insert quote characters (‘ and “) into the output screen?

0 Answers  


What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?

0 Answers  


Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.

3 Answers   Infosys,


what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);

4 Answers   TCS,


What is bash c?

0 Answers  


What are the types of operators in c?

0 Answers  


progrem to generate the following series 1 12 123 1234 12345

6 Answers   HCL, Wipro,


Why static is used in c?

0 Answers  


what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175

5 Answers   Wipro,


What are the types of data structures in c?

0 Answers  


what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1

1 Answers   IBM,


Categories