please give code for this 1 2 4 7 11 16
Answers were Sorted based on User's Feedback
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
What is d scanf?
What happens if header file is included twice?
Why is c called "mother" language?
What should be keep precautions while using the recursion method?
write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables
const char * char * const What is the differnce between the above tow?.
Why doesn't C support function overloading?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
nic scientist exam
What are the types of assignment statements?
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }