Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 header files used in c language?

1098


How can I remove the trailing spaces from a string?

1121


Define circular linked list.

1082


What is static and auto variables in c?

1143


What is enumerated data type in c?

1128


If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?

1311


What is data types?

1139


What is const volatile variable in c?

1103


What is the difference between c &c++?

1208


count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array

1137


What does. int *x[](); means ?

1136


What is difference between static and global variable in c?

1103


What are the 4 data types?

1059


Can the “if” function be used in comparing strings?

1108


Write a simple code fragment that will check if a number is positive or negative.

1209