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
What is extern c used for?
What is the size of structure in c?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What is wrong with this program statement? void = 10;
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
How to define structures? ·
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
How can you increase the allowable number of simultaneously open files?
Is struct oop?
What is a #include preprocessor?
Write a code of a general series where the next element is the sum of last k terms.
What do you mean by invalid pointer arithmetic?
What is wild pointer in c with example?
Describe dynamic data structure in c programming language?
Explain the difference between strcpy() and memcpy() function?