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...

print ur name without using any semicolon in c/c++....

Answer Posted / shariq khan

#include<stdio.h>
#define A;
void main()
{
printf("shariq khan")A
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is double pointer?

996


What is || operator and how does it function in a program?

1084


How many levels of indirection in pointers can you have in a single declaration?

1088


What is a built-in function in C?

1593


How can I avoid the abort, retry, fail messages?

1136


How are 16- and 32-bit numbers stored?

1286


Explain what is operator promotion?

1084


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

6295


Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.

1278


What is the explanation for prototype function in c?

976


Explain how can I make sure that my program is the only one accessing a file?

1219


How does placing some code lines between the comment symbol help in debugging the code?

992


Give differences between - new and malloc() , delete and free() ?

1095


code for find determinent of amatrix

1960


Is c compiled or interpreted?

1192