What is extern c used for?
No Answer is Posted For this Question
Be the First to Post Answer
hi any body pls give me company name interview conduct "c" language only
How can I remove the trailing spaces from a string?
Explain the Difference between the New and Malloc keyword.
why Language C is plateform dependent
write a program to remove duplicate from an ordered char array? in c
Write a program to show the change in position of a cursor using c
What is non linear data structure in c?
what is the format specifier for printing a pointer value?
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
What are the advantages of the functions?
write program on arrays
What is meant by operator precedence?