write a program to concatenation the string using switch
case?
What is scope of variable in c?
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
how the compiler treats any volatile variable?Explain with example.
How can you dynamically allocate memory in C?
What is volatile variable in c with example?
WHAT IS HEADER?
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
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.
What does volatile do?
What are pointers in C? Give an example where to illustrate their significance.
how to find out the inorder successor of a node in a tree??
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }