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

Answer Posted / mani

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

Is This Answer Correct ?    7 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are called c variables?

572


explain what is a newline escape sequence?

684


int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;

1124


What is line in c preprocessor?

611


what are bit fields? What is the use of bit fields in a structure declaration?

1498






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

648


Explain 'bus error'?

556


What is .obj file in c?

648


why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???

1516


Write the syntax and purpose of a switch statement in C.

619


Explain the difference between ++u and u++?

634


How can I read/write structures from/to data files?

546


What does %d do?

715


stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.

1850


What are the different properties of variable number of arguments?

659