please give code for this 1 2 4 7 11 16
Answers were Sorted based on User's Feedback
How do you define CONSTANT in C?
where do we use structure pointer?
write a recursive program in'c'to find whether a given five digit number is a palindrome or not
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
Famous puzzles which are generally asked by companies during interviews ?
write a c program to find the sum of five entered numbers using an array named number
related proverb of "dont count your chicken before it hatches"
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--);
print the table 5 in loops
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
Explain the process of converting a Tree into a Binary Tree.