What are reserved words?
No Answer is Posted For this Question
Be the First to Post Answer
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 Answers Motorola, TCS, Wipro,
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?
Why do we write return 0 in c?
How is = symbol different from == symbol in c programming?
What is size of union in c?
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What are the advantages of c language?
without using arithmatic operator solve which number is greater??????????
What is meant by type casting?
1.write a program to merge the arrays 2.write efficient code for extracting unique elements from a sorted list of array?