Suppose I want to write a function that takes a generic
pointer as an argument and I want to simulate passing it by
reference. Can I give the formal parameter type void **, and
do something like this?
void f(void **);
double *dp;
f((void **)&dp);
why **??
function that takes generic pointer argument.
declare pointer as void *
void f(void *);
Is This Answer Correct ? | 1 Yes | 0 No |
What are the application of c?
What do you mean by recursion in c?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Which sorting algorithm is the best?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Why is sizeof () an operator and not a function?
give one ip, find out which contry
What is LINKED LIST? How can you access the last element in a linked list?
please give me some tips for the selection in TCS.
List some basic data types in c?
WRITE A C PROGRAM TO FIND SECOND BIGGEST VALUE FROM THE GIVEN VALUES
WHAT IS PRE POSSESSORS?