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


Please Help Members By Posting Answers For Below Questions

What are the features of c languages?

839


What do you mean by scope of a variable in c?

788


largest Of three Number using without if condition?

1285


How can I manipulate strings of multibyte characters?

836


What is bubble sort technique in c?

787


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.

1549


What is the c value paradox and how is it explained?

817


Does sprintf put null character?

811


List some of the static data structures in C?

980


write a program to copy the string using switch case?

2644


Why is %d used in c?

761


What is time null in c?

778


How do you convert strings to numbers in C?

948


explain how do you use macro?

922


How can I call fortran?

825