How to get the current position of the file pointer?
No Answer is Posted For this Question
Be the First to Post Answer
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
What does it mean to declare a member function as virtual?
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
Explain what data encapsulation is in c++?
which is best institue to learn C/C++ IN AMEERPET OR MAITHRIVANAM OR SR NAGAR, PLEASE HELP. THANKS IN ADVANCE
What is purpose of abstract class?
Define a nested class. Explain how it can be useful.
write asingle linked list which read from two list & the do the following 1 sort the prime & nonprime num (prime should be less tn nonprime) 2 each node has a prime num followd by nonprime 3 add a new node into its sutable plce 4 erase the most three duplicated non prime num 5 find the least duplicated prime num
When can I use a forward declaration?
What header file is needed for exit(); a) stdlib.h b) conio.h c) dos.h
Explain overriding.
What are the advantage of using register variables?