What is difference between far and near pointers?
No Answer is Posted For this Question
Be the First to Post Answer
Can we increase size of array in c?
Between macros and functions,which is better to use and why?
write a program to generate address labels using structures?
How can you determine the size of an allocated portion of memory?
what is the significance of static storage class specifier?
read an array and search an element
1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)
Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.
how to find sum of digits in C?
Write a program to check whether a number is prime or not using c?
Which type of language is c?
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); }