What does node * mean?
No Answer is Posted For this Question
Be the First to Post Answer
difference between i++* and *++i
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
What is sizeof int?
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)....................
logic for x=y^n
code for copying two strings with out strcpy() function.
What is a header file?
Explain the ternary tree?
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
What is the use of a conditional inclusion statement in C?
What are the 4 data types?
Compare and contrast compilers from interpreters.