What is pointer to pointer in c with example?
implement general tree using link list
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
to find the closest pair
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
A stack can be implemented only using array?if not what is used?
How can I allocate arrays or structures bigger than 64K?
What is the difference between scanf and fscanf?
I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
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.
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }
What is modifier & how many types of modifiers available in c?
What are the different types of constants?