is there any choice in opting subjects like 4 out of 7
No Answer is Posted For this Question
Be the First to Post Answer
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What is the problem with multiple inheritance?
C#.net Interview Question A=10 B=5 C=A+B Print C The above will be given in a multiline textbox. You need to parse the above input, store values for A,B&c. And you have to display the value of C.
What do you mean by variable?
what is the difference between <stdio.h>and "stdio.h"?
WAP find square root of any number (without using sqrt() )?
what is virtual function in c++
What is oops with example?
What is ambiguity in c++
What are oops methods?
why destructor is not over loaded?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; wow *b; a.x = 22; b = &a; a.x = 23; cout << b->x; return 0; }