What is masking?
No Answer is Posted For this Question
Be the First to Post Answer
#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 flow of execution in cprogram? ex:printf();,scanf();
which will be first in c compiling ,linking or compiling ,debugging.
what is d pitfalls of registers variables
What is c language used for?
A program to allow an input operand and operator from the operator and read on the display and output operand.
How to delete a node from linked list w/o using collectons?
What does %2f mean in c?
How to reverse a string using a recursive function, without swapping or using an extra memory?
31 Answers Cisco, Mind Tree, Motorola, Ophio, Sony, TCS, Wipro,
2. What does static variable mean?
can we store values and addresses in the same array? explain
whether itis a structured language?