can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / abhradeep chatterjee
#include<stdio.h>
void main()
{
if(printf("Hello")){}
}
this is the correct answer.
| Is This Answer Correct ? | 22 Yes | 4 No |
Post New Answer View All Answers
What is pointers in c with example?
What is a pointer in c plus plus?
Differentiate between the = symbol and == symbol?
What is realloc in c?
What happens if header file is included twice?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Why do we need a structure?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is difference between structure and union in c programming?
What is the use of the function in c?
What is c value paradox explain?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
How do you initialize pointer variables?
What does the && operator do in a program code?
Why c is called procedure oriented language?