How can I make a program in c to print 'Hello' without
using semicolon in the code?
Answer Posted / rosaiah
int main()
{
if(printf("hello"))
{
\* blank*\
}
}
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is declaration and definition in c?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
all c language question
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
What is the meaning of 2d in c?
What is c definition?
How would you obtain the current time and difference between two times?
Explain what are the standard predefined macros?
Explain the properties of union.
Why should I use standard library functions instead of writing my own?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
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. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
What is a ternary operator in c?
What is zero based addressing?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?