Why pointers are used in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is wrong with this program statement? void = 10;
Is there a way to compare two structure variables?
Explain what are preprocessor directives?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Why do we use header files in c?
What is the difference b/w Structure & Array?
What is the purpose of & in scanf?
What does sizeof return c?
What is macro?
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................