Is main is user defined function?
No Answer is Posted For this Question
Be the First to Post Answer
Which is better pointer or array?
What is abstract data structure in c?
Is a pointer a kind of array?
progrem to generate the following series 1 12 123 1234 12345
Is file a keyword in c?
What is the diffences between Windows XP and Windows Visa
const char * char * const What is the differnce between the above tow?.
What is c basic?
how memory store byte
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
Subtract Two Number Without Using Subtraction Operator
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?