Why static is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
C program to read the integer and calculate sum and average using single dimensional array
What is keyword in c?
What is main function in c?
What is the meaning of typedef struct in c?
What are the types of data files?
What is property type c?
How do I use strcmp?
5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
What does a run-time "null pointer assignment" error mean?
What does c value mean?
#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....?
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.