can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / chandanakurukunda
#include<stdio.h>
void main()
{
if(printf("hello"))
{
}
}
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
What are the 5 elements of structure?
Explain what is the benefit of using enum to declare a constant?
What is the general form of a C program?
Why header files are used?
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
Is that possible to store 32768 in an int data type variable?
Why do we use main function?
What’s the special use of UNIONS?
Why can’t we compare structures?
Do you have any idea about the use of "auto" keyword?
Do you know the use of 'auto' keyword?
Explain what is the general form of a c program?
How can you return multiple values from a function?
Why does everyone say not to use gets?
Is fortran faster than c?