can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / taruna chaudhary
#include<stdio.h>
void main()
{
clrscr();
if("printf(hello pushpendra)")
getch();
}
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
What is a shell structure examples?
Write the control statements in C language
Does c have an equivalent to pascals with statement?
What are the types of data structures in c?
Why use int main instead of void main?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
explain what is a newline escape sequence?
What do you mean by scope of a variable in c?
What is the benefit of using #define to declare a constant?
What is the purpose of void in c?
What is modifier & how many types of modifiers available in c?
What are compound statements?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
Which is better between malloc and calloc?