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

Answers were Sorted based on User's Feedback



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

Answer / kk

Here is a basic sample which uses main as the entry point..
#include <stdio.h>
#define myProxyMain main

int myProxyMain()
{
printf("\nHello World !!");
getchar();
return 0;
}

Just note that at source level there is no main but once
preprocessing we still have the old main() method.. Which
means we still have the main method in the object module as
well as the executable..

Is This Answer Correct ?    37 Yes 11 No

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

Answer / nitish_bhasin

#include<stdio.h>
#define nitish main
void nitish()
{
printf("Hello World");
}

Is This Answer Correct ?    40 Yes 20 No

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

Answer / smarty coder

Use pragma directive if you want to do something before
executing main function..

Is This Answer Correct ?    14 Yes 1 No

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

Answer / manne ranjith

Using Macros we can solve this.

#include<stdio.h>
#include<conio.h>

#define manne main

void manne()
{
clrscr();
printf("HELLO WORLD\n");
getch();
}

Is This Answer Correct ?    27 Yes 18 No

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

Answer / niranjan vg

compile the above file using the following command

# gcc -nostartfiles <filename.c>

# ./a.out

Is This Answer Correct ?    10 Yes 2 No

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

Answer / deepika

#include<stdio.h>
#define(s,t,u,m,p,e,d)m##s##u##t
#define begin decode(a,n,i,m,a,t,e)
int begin()
{
printf("Hello World");
}

Is This Answer Correct ?    7 Yes 2 No

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

Answer / hemanthkumar

#include<stdio.h>
#define hemanth main
public hemanth()
{
printf("hello world");
}

Is This Answer Correct ?    5 Yes 1 No

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

Answer / uttam kumar das

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

Is This Answer Correct ?    8 Yes 6 No

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

Answer / niranjan vg

This is the other way you can use it.....

#include<stdio.h>


int hello();



_start()
{
_exit(hello());
}



int hello()
{
printf("\n \t\t\t\t\tHello World\n");
printf("\n \t \t \t Welome to C in Linux\n");
}

Is This Answer Correct ?    6 Yes 6 No

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

Answer / andy

Ranjan's answer was the correct one. And it's what interviewers expect.

use g++ to compile and run this:

#include<stdio.h>
#include<iostream>

class World
{
public:
World()
{
printf("Hello world\n");
}
};

World w1;

int main()
{
printf("Hello world again!!\n");
return 0;
}

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More C Interview Questions

Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0

4 Answers  


what is array?

8 Answers  


What is sorting in c plus plus?

0 Answers  


what is the c.

3 Answers   IBM, TCS,


write a “Hello World” program in “c” without using a semicolon?

9 Answers   CTS, TCS, Wipro,


When should I declare a function?

0 Answers  


helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe

2 Answers  


Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)

1 Answers   HTC,


my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?

0 Answers  


f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?

7 Answers   Geometric Software,


Can you define which header file to include at compile time?

0 Answers   Aspire, Infogain,


What are unions in c?

0 Answers  


Categories