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 / guest

#include<stdio.h>
#include<conio.h>
printf("hello world");

Is This Answer Correct ?    3 Yes 62 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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

6188


What is difference between Structure and Unions?

1185


What is switch in c?

1047


Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]

1021


When do we get logical errors?

1072


Can you please explain the difference between malloc() and calloc() function?

1050


What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?

1271


What is pass by value in c?

1005


What is a file descriptor in c?

1053


What is the difference between formatted&unformatted i/o functions?

1006


What is wild pointer in c with example?

1020


What does the file stdio.h contain?

998


What is an array in c?

1001


What is linear search?

1088


How do I use void main?

1052