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
Why c is called free form language?
What math functions are available for integers? For floating point?
What are operators in c?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
I need a sort of an approximate strcmp routine?
How can my program discover the complete pathname to the executable from which it was invoked?
What is auto keyword in c?
What is the use of printf() and scanf() functions?
Explain what is dynamic data structure?
how can f be used for both float and double arguments in printf? Are not they different types?
What is the difference between char array and char pointer?
What are shell structures used for?
What is break in c?
using for loop sum 2 number of any 4 digit number in c language
What is spaghetti programming?