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 are the 3 types of structures?
Write a program of prime number using recursion.
write a program in c language to print your bio-data on the screen by using functions.
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
What is void pointers in c?
What does sizeof function do?
What does c value mean?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
what are non standard function in c
Can we use any name in place of argv and argc as command line arguments?
What is %lu in c?
What is meant by errors and debugging?
What do you know about the use of bit field?
What is far pointer in c?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function