c program to subtract between two numbers without using '-'
sign and subtract function.
Write a program to check armstrong number in c?
difference between memcpy and strcpy
Write a program of prime number using recursion.
Why is malloc used?
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); }
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side? Upload a C program to demonstrate the behaviour of the game.
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.
What extern c means?
how to get starting address of a running C program
Where define directive used?
What is the most efficient way to store flag values?
What are the different categories of functions in c?