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
write a program to display all prime numbers
Differentiate call by value and call by reference?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Can you assign a different address to an array tag?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
Describe the steps to insert data into a singly linked list.
Calculate 1*2*3*____*n using recursive function??
Why do we use int main?
Why do some versions of toupper act strangely if given an upper-case letter?
What happens if you free a pointer twice?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
How can you draw circles in C?
What does struct node * mean?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
Why do we need arrays in c?