write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / manikandan
while(printf("welcome"))
{
}
| Is This Answer Correct ? | 13 Yes | 16 No |
Post New Answer View All Answers
What is pointer to pointer in c?
What are the two types of functions in c?
Can include files be nested? How many levels deep can include files be nested?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Which built-in library function can be used to match a patter from the string?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
What is && in c programming?
What should malloc() do?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
How do you print an address?
Ow can I insert or delete a line (or record) in the middle of a file?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What is the best style for code layout in c?
What are pointers? What are stacks and queues?
Explain the use of keyword 'register' with respect to variables.