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
How are structure passing and returning implemented?
What is the use of header?
what is different between auto and local static? why should we use local static?
What is putchar() function?
in linking some of os executables are linking name some of them
Is return a keyword in c?
What is indirection in c?
What is external variable in c?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What functions are used for dynamic memory allocation in c language?
Why is a semicolon (;) put at the end of every program statement?
Differentiate between a for loop and a while loop? What are it uses?
Why clrscr is used in c?
I need a sort of an approximate strcmp routine?