Explain bit masking in c?
No Answer is Posted For this Question
Be the First to Post Answer
What's wrong with "char *p; *p = malloc(10);"?
#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 is the function of this pointer?
0 Answers Agilent, ZS Associates,
what is the difference between. system call and library function?
to get a line of text and count the number of vowels in it
Where are the auto variables stored?
write a c program to store and print name,address,roll.no of a student using structures?
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
What is meaning of "Void main" in C Language.
24 Answers Ford, GU, HCL, IBIBS, JUW, TCS,
What are multidimensional arrays?
WHAT IS HIGH LEVEL LANGUAGE?
Diff between for loop and while loop?