If you know then define #pragma?
No Answer is Posted For this Question
Be the First to Post Answer
What are Macros? What are its advantages and disadvantages?
The statement, int(*x[]) () what does in indicate?
what is ans for this scanf(%%d",c);
#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....?
Why static variable is used in c?
Does free set pointer to null?
What is a program flowchart and how does it help in writing a program?
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
What is the newline escape sequence?
What is the difference between procedural and declarative language?
What is void main ()?
How can I increase the allowable number of simultaneously open files?