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

wap to print "hello world" without using the main function.

Answer Posted / siva

#include<stdio.h>
#include<conio.h>
#define siva main
siva()
{
clrscr();
printf("hello world");
getch();
return 0;
}

Is This Answer Correct ?    3 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of function overloading in C?

1211


Can include files be nested?

1154


provide an example of the Group by clause, when would you use this clause

2244


hi send me sample aptitude papers of cts?

2218


The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this

3656


How can I invoke another program (a standalone executable, or an operating system command) from within a c program?

1261


Is c procedural or functional?

1095


What is the difference between int main and void main?

1093


Write a program to print numbers from 1 to 100 without using loop in c?

1134


Tell us two differences between new () and malloc ()?

1272


Describe newline escape sequence with a sample program?

1169


Which of the following operators is incorrect and why? ( >=, <=, <>, ==)

1222


write a c program to find the sum of five entered numbers using an array named number

2203


What is meant by type specifiers?

1182


.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }

1368