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 do you know about the use of bit field?
What is the translation phases used in c language?
What is conio h in c?
What is union and structure?
What are reserved words?
Can we declare a function inside a function in c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Explain what is the purpose of "extern" keyword in a function declaration?
What is a far pointer in c?
write a program in c language to print your bio-data on the screen by using functions.
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
Write a code of a general series where the next element is the sum of last k terms.
Explain what are the standard predefined macros?
Where static variables are stored in memory in c?
How to Throw some light on the splay trees?