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
Explain what does it mean when a pointer is used in an if statement?
Is c still used?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
Why can arithmetic operations not be performed on void pointers?
Explain the red-black trees?
What is the difference between far and near in c?
When should volatile modifier be used?
What is the difference between array_name and &array_name?
What is clrscr ()?
Write a program to print fibonacci series without using recursion?
Is it better to use a macro or a function?
Explain what are the different file extensions involved when programming in c?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?