can you change name of main()?how?
Answers were Sorted based on User's Feedback
Answer / sindhu
#define my main()
my()
{
printf("hello frnz");
}
| Is This Answer Correct ? | 14 Yes | 7 No |
Answer / srinivas aro
#deefine m main
m()
{
printf(" max computers ch.pet guntur disrtct A.P");
}
| Is This Answer Correct ? | 12 Yes | 7 No |
Answer / nithya
#define m main
#include<stdio.h>
void m()
{
printf("Hai");
}
| Is This Answer Correct ? | 1 Yes | 1 No |
How can I find the modification date and time of a file?
Who is invented by c?
Is malloc memset faster than calloc?
What is the difference between array and linked list in c?
can a union be self-referenced?
What is identifiers in c with examples?
What is data types?
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
how to swap two nubers by using a function with pointers?
What does %d do?
Who is the founder of c language?
What is the difference between File pointer and Internal Charecter Pointer?