can we write a c program with out using main

Answers were Sorted based on User's Feedback



can we write a c program with out using main..

Answer / durga mahesh

Say Big Nooooooooooooooooo..........
Its never ever possible bcoz when a program is compiled the compiler always looks for the entry of the program initially(this is the first and foremost action performed by compier)
In c,main() is the entry section...exectuion begins only after main is checked....

Is This Answer Correct ?    20 Yes 12 No

can we write a c program with out using main..

Answer / arun kumar

#include<stdio.h>
#include<conio.h>
#define decode(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 ARUN");
getch();
}

Is This Answer Correct ?    6 Yes 2 No

can we write a c program with out using main..

Answer / kamini

#include<stdio.h>
#include<conio.h>
#define decode(s,t,u,m,p,e,d) m##s##u##t
#define begin decode(a,n,i,m,a,t,e)

void begin()
{
printf(" hello ARUN");
getch();
}

Ans was correct but if the function is declare int dn it has to be return some value so it should be void.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What is a string?

0 Answers  


What is variable and explain rules to declare variable in c?

0 Answers  


What is scope rule of function in c?

0 Answers  


4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.

5 Answers  


Are the outer parentheses in return statements really optional?

0 Answers  


write a program to find out number of on bits in a number?

17 Answers   Huawei, Microsoft,


Explain how can I remove the trailing spaces from a string?

0 Answers  


What does typedef struct mean?

0 Answers  


who is first prime minister in india??

8 Answers   Wipro,


What are the 5 organizational structures?

0 Answers  


what is the difference between NULL('\0') and 0?

14 Answers   Microsoft,


what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.

6 Answers   HCL,


Categories