I heard that you have to include stdio.h before calling printf. Why?
No Answer is Posted For this Question
Be the First to Post Answer
What oops means?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
Explain how can I open a file so that other programs can update it at the same time?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
Why we write conio h in c?
How can I do peek and poke in c?
hello friends what do u mean by BUS ERROR i got this error while i am doing my program in DATA STRUCTURES
What is the use of define in c?
Simplify the program segment if X = B then C ← true else C ← false
write a C program to print the program itself ?!
Is null always defined as 0(zero)?
void main() { int i=5; printf("%d",i++ + ++i); }