write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / rama krishna sidhartha
main()
{
if(printf("Welcome"))
{
}
}
(OR)
main()
{
if(printf("Welcome"))
}
Is This Answer Correct ? | 13 Yes | 5 No |
Post New Answer View All Answers
What is the difference between text files and binary files?
What is c programming structure?
Can a pointer point to null?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
How many types of arrays are there in c?
why return type of main is not necessary in linux
What are different storage class specifiers in c?
What does == mean in texting?
I need testPalindrome and removeSpace
#include
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Should a function contain a return statement if it does not return a value?
Why we use int main and void main?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What is difference between array and structure in c?