Differentiate between null and void pointers.
No Answer is Posted For this Question
Be the First to Post Answer
Explain a file operation in C with an example.
what is the difference between postfix and prefix unary increment operators?
What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack
without using arithmatic operator solve which number is greater??????????
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
What is main () in c?
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
Do you have any idea how to compare array with pointer in c?
How can my program discover the complete pathname to the executable from which it was invoked?
which operator is known as dummy operator in c?
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
What is malloc() function?