What is variable declaration and definition in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of macro program
printf("%d",(printf("Hello")); What it returns?
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); }
What is the use of a static variable in c?
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }
Fifty minutes ago if it was four times as many mints past 3 o clock. how many minutes is it to six o'clock n how....?????
which is an algorithm for sorting in a growing Lexicographic order
How to add two numbers with using function?
how should functions be apportioned among source files?
What is the difference between ++a and a++?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
What are the different data types in C?