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 are the features of c languages?
What do you mean by scope of a variable in c?
largest Of three Number using without if condition?
How can I manipulate strings of multibyte characters?
What is bubble sort technique in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is the c value paradox and how is it explained?
Does sprintf put null character?
List some of the static data structures in C?
write a program to copy the string using switch case?
Why is %d used in c?
What is time null in c?
How do you convert strings to numbers in C?
explain how do you use macro?
How can I call fortran?