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 language is c written?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What is the difference between int and float?
write a program that finds the factorial of a number using recursion?
How to receive strings with spaces in scanf()
What is the difference between abs() and fabs() functions?
What is d scanf?
write a program to fined second smallest and largest element in a given series of elements (without sorting)
what is array?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
differentiate between const char *a; char *const a; and char const *a;
2 Answers College School Exams Tests, HCL, TCS,
write a program to display numbers from 1 to 10 and 10 to 1?