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

Answer Posted / kayalvizhi.s

#include<stdio.h>
{
main()
while(printf("welcome"))
}

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.

2226


What is conio h in c?

629


What is self-referential structure in c programming?

662


How many types of arrays are there in c?

599


What do mean by network ?

661






Explain the difference between structs and unions in c?

578


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

668


What is malloc calloc and realloc in c?

673


What is the difference between %d and %i?

598


What is difference between array and pointer in c?

542


What is wild pointer in c?

613


Can a function argument have default value?

676


write a proram to reverse the string using switch case?

2473


What is keyword with example?

646


What are pragmas and what are they good for?

580