Is it possible to run a c program without using main?If yes
HOW??

Answer Posted / rajiv kumar koiri

#include<stdio.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");
}

Is This Answer Correct ?    16 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

In which layer of the network datastructure format change is done

1424


What is the difference between arrays and pointers?

627


#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

774


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

801


Write a Program to accept different goods with the number, price and date of purchase and display them

5427






How do you sort filenames in a directory?

699


A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference

623


How is = symbol different from == symbol in c programming?

603


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

653


How do I get an accurate error status return from system on ms-dos?

639


What are the 4 data types?

591


What does printf does?

731


How many levels deep can include files be nested?

642


State the difference between x3 and x[3].

644


Is python a c language?

547