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 |
where can function pointers be used?
Write a program that can show the multiplication table.
Is multithreading possible in c?
What should malloc() do?
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
Not all reserved words are written in lowercase. TRUE or FALSE?
What is array of structure in c programming?
what is the maximum limit of row and column of a matrix in c programming. in linux .
c program to compute AREA under integral
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
What do you mean by a local block?
write a program to convert a expression in polish notation (postfix) to inline (normal)