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 |
print a "hello" word without using printf n puts in c language
How do you search data in a data file using random access method?
If I have a char * variable pointing to the name of a function ..
How can I find the day of the week given the date?
What is meaning of "Void main" in C Language.
24 Answers Ford, GU, HCL, IBIBS, JUW, TCS,
Why clrscr is used in c?
What are unions in c?
What happens if header file is included twice?
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
Can you assign a different address to an array tag?
what is the difference between exit() and _exit() functions?