how to making game in c++ ?
No Answer is Posted For this Question
Be the First to Post Answer
What is the underlying datastructure of map?
Distinguish between: a) Normal layout & Print Layout views b) Windows Clipboard & office Clipboard c) Save & Save As Commands d) Program File & Data File e) Pie Charts & Barr Charts
What is the STL?
what's the difference between abstract class and concreate class? what's the meaning of standard template library(STL)?
Describe how to safeguard a system through acquisition of an antivirus Program and systematic backup.
write a program that will accept a number and print.its equivalent in words the maximum input number is 9999
What do stl stand for?
why does the execution of a c++ program start with main()???
WHAT IS THE DIFFERENCE BETWEEN C++ AND VC++
What are the components of stl?
how to use C++?
#define CUBE(x) (x*x*x) main() { int a,b=3; a=cube(b++); printf("%d %d",a,b); } What should be the value of a and b? My calc a=4 but syst a=6 how pls tell me if you know it?