Explain the ternary tree?
No Answer is Posted For this Question
Be the First to Post Answer
difference of two no's with out using - operator
main() { int a[10]; printf("%d",*a+1-*a+3); }
create a C program that displays one z,two y's,three x's until twenty six A's. plzz answer i need it tomorrow.
Why void main is used in c?
Can you please explain the scope of static variables?
What do header files do?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
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?
Explain what is a program flowchart and explain how does it help in writing a program?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'
What is typedef struct in c?