Do pointers take up memory?
No Answer is Posted For this Question
Be the First to Post Answer
What is class and object in c?
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
What are types of structure?
What are the advantages of using new operator as compared to the function malloc ()?
is forign key will be unique key any table or not?
Differentiate between ordinary variable and pointer in c.
what is the role you expect in software industry?
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
What is the use of the restrict keyword?
What is the meaning of c in c language?
#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....?