Explain how do you use a pointer to a function?
No Answer is Posted For this Question
Be the First to Post Answer
being a chemical engineer and with an aggregate of 80% why you opt for TCS and not your core industry?
Explain is it valid to address one element beyond the end of an array?
How do c compilers work?
Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }
Why double pointer is used in c?
What is the purpose of Scanf Print, getchar, putchar, function?
Write a program to print “hello world” without using semicolon?
what are the stages of compilation
What is the diffrent between while and do while statement ?
write the program to find multiplication of 2-D matrix??????????
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?
What is the difference between fork() and vfork()?