Answer Posted / sanjay bhosale
Void pointer is the pointer which can point to any type of variable.
e.g
int a=10;
float b=20.00f;
void *ptr=null;
ptr = &a;
ptr = &b;
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the meaning of 2d in c?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is a structural principle?
What is file in c preprocessor?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
What is variable initialization and why is it important?
What is an auto keyword in c?
What are structure types in C?
Where can I get an ansi-compatible lint?
Is it better to use malloc() or calloc()?
What is the scope of local variable in c?
What is volatile variable in c with example?
What are qualifiers in c?
What are the primitive data types in c?