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 |
How can I read and write comma-delimited text?
Explain the differences between public, protected, private and internal.
difference between object file and executable file
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
Who is the founder of c language?
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
What are local static variables?
what is purpose of fflush(stdin) function
who is the founder of c
19 Answers College School Exams Tests, HP,
Is there a way to compare two structure variables?