What is the advantage of an array over individual variables?
No Answer is Posted For this Question
Be the First to Post Answer
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);
Where are c variables stored in memory?
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
please give code for this 1 2 4 7 11 16
Please list all the unary and binary operators in C.
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
What is the importance of c in your views?
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
What is the memory allocated by the following definition ? int (*x)[10];
What is a Genralised LInked List?? Please give a detailed explation of it..
why do some people write if(0 == x) instead of if(x == 0)?
How to avoid buffer overflow?