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

List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.

0 Answers   Ignou,


What is wild pointer in c?

0 Answers  


What is difference between union and structure in c?

0 Answers  


Which header file is used for clrscr?

0 Answers  


what is difference between #include<stdio.h> and #include"stdio.h"

4 Answers  


Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?

1 Answers   Microsoft,


What is local and global variable in c?

0 Answers  


What is the difference between fread buffer() and fwrite buffer()?

0 Answers  


Explain what’s a signal? Explain what do I use signals for?

0 Answers  


what is the difference between NULL & NUL keywords in C?

3 Answers  


main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }

6 Answers  


#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output

5 Answers   CitiGroup,


Categories