Answer Posted / som shekhar
Take the following example where i assume that table size
has been defined previosly but at some part of time i want
to change it..but the table size is defined in some other
module and you dont have an access to it.
#if TABLE_SIZE>200
#undef TABLE_SIZE
#define TABLE_SIZE 200
#elif TABLE_SIZE<50
#undef TABLE_SIZE
#define TABLE_SIZE 50
#else
#undef TABLE_SIZE
#define TABLE_SIZE 100
#endif
int table[TABLE_SIZE];
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is an interface in oop?
write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory
Which language is not a true object oriented programming language?
What is polymorphism explain?
What is inheritance and how many types of inheritance?
Is html an oop?
What does no cap mean?
What are benefits of oop?
Are polymorphisms mutations?
What are the 4 pillars of oop?
Can bst contain duplicates?
What is polymorphism give a real life example?
Why multiple inheritance is not allowed?
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
Plese get me a perfect C++ program for railway/airway reservation with all details.