What are the modifiers available in c programming language?
No Answer is Posted For this Question
Be the First to Post Answer
Do you know what are bitwise shift operators in c programming?
write a program to find the largest and second largest integer from an array
what is dangling pointer?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is a pointer and how it is initialized?
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
What is the method to save data in stack data structure type?
What is nested structure?
What are comments and how do you insert it in a C program?
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
write a program for 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 4 4
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }