How to print "Hi World" without using semi colon?
Answer Posted / ayyanar.m
main()
{
clrscr();
if(printf("HI World"))
getch();
}
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
can we have joblib in a proc ?
What are external variables in c?
What extern c means?
Difference between constant pointer and pointer to a constant.
How we can insert comments in a c program?
What are the disadvantages of a shell structure?
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
What is a void pointer? When is a void pointer used?
how can use subset in c program and give more example
What is data type long in c?
What is the scope of static variable in c?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
How would you obtain the current time and difference between two times?
Why main function is special give two reasons?