can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / anshukumarsrivatsva.
a c program to prrint a string without using a semicolon,
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("allahabad is a sangam city))
getch();
}
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What is array of structure in c?
How can I get back to the interactive keyboard if stdin is redirected?
What is the use of static variable in c?
using only #include
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What is the meaning of 2d in c?
What is call by value in c?
What is an lvalue in c?
What is the use of function in c?
What are the loops in c?
Can we change the value of #define in c?
How can I recover the file name given an open stream?
Explain what is meant by 'bit masking'?
Explain what are run-time errors?
Explain can static variables be declared in a header file?