Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

write a program to print the all 4digits numbers & whose squares must me even numbers?

2 Answers   Virtusa,


how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12

0 Answers  


explain how do you use macro?

0 Answers  


if a person is buying coconuts of Rs10,and then sell that coconuts of Rs9,with the loss of one rupee.After that the person became a millaniore.how?

9 Answers   Wipro,


What is header file in c?

0 Answers  


What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }

0 Answers   Wilco,


Differentiate between the = symbol and == symbol?

0 Answers  


FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above

0 Answers  


What is console in c language?

0 Answers  


what is use#in c

3 Answers  


Define macros.

0 Answers   Tech Mahindra,


write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?

3 Answers   Oracle,


Categories