can u give me the good and very optimised code for a car
racing game?
No Answer is Posted For this Question
Be the First to Post Answer
What are the 32 keywords in c?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
Write a routine that prints out a 2-D array in spiral order!
how will you write a program on linked lists using JAVA programming???????????
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
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 is different between auto and local static? why should we use local static?
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
Explain what are header files and explain what are its uses in c programming?
What are the c keywords?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
When is a “switch” statement preferable over an “if” statement?