What does the error message "DGROUP exceeds 64K" mean?
No Answer is Posted For this Question
Be the First to Post Answer
How to add two numbers with using function?
difference between Low, Middle, High Level languages in c ?
What is the advantage of c?
What is sorting in c plus plus?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
What is structure packing ?
What is use of #include in c?
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
Explain the advantages and disadvantages of macros.
what will be the output for the following main() { printf("hi" "hello"); }
#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....?
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);