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 s in c?

0 Answers  


How will you delete a node in DLL?

0 Answers   GrapeCity,


What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?

0 Answers  


Write a program to add a given duration with time(24hrs format)

1 Answers   Protech,


how to find anagram without using string functions using only loops in c programming

1 Answers   Mind Tree, TCS,






What is a volatile keyword in c?

0 Answers  


What is binary tree in c?

0 Answers  


Is it possible to create recycle bin in mobiles?

2 Answers  


In C language what is a 'dangling pointer'?

0 Answers   Accenture,


What are the 4 types of programming language?

0 Answers  


wt is d full form of c

6 Answers   TCS, Wipro,


Is it better to use a macro or a function?

0 Answers  


Categories