What is the difference between array and structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
How does free() know explain how much memory to release?
Can a variable be both static and volatile in c?
do you think its fraud or original company?
implement general tree using link list
Write a program in C to reverse a number by recursive function?
Write a program to print all permutations of a given string.
What is the difference between far and near ?
What is identifier in c?
a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'
Do you know null pointer?
Write a code to generate divisors of an integer?
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1