write a program without using main function?
Answers were Sorted based on User's Feedback
Answer / raavi.swami
#include<stdio.h>
#define begin main
void begin()
{
printf("Hello");
}
| Is This Answer Correct ? | 27 Yes | 2 No |
Answer / siva koratani
#include<stdio.h>
#define begin m##a##i##n
void begin()
{
printf("Hello");
}
| Is This Answer Correct ? | 7 Yes | 2 No |
What is type qualifiers?
Define C in your own Language.
Should I learn c before c++?
Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.
1 Answers College School Exams Tests, Wipro,
When is a null pointer used?
what is disadvantage of pointer in C
How can I generate floating-point random numbers?
HOW CAN ADD OUR FUNCTION IN LIBRARY.
how to print this sereis 2 4 3 6 5..........?
What are the basic data types associated with c?
What are the features of c languages?
What does %p mean c?