write a c/c++ programthat connects to a MYSQL server and
checks if the INNoDB plug in is installed on it.If so your
program should print the total number of disk writes by MYSQL.
No Answer is Posted For this Question
Be the First to Post Answer
Diff between for loop and while loop?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me
How can I list all of the predefined identifiers?
What is the use of typedef in structure in c?
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
What is #include conio h?
what is diff b/w huge & far & near pointer??
How are Structure passing and returning implemented by the complier?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
what is the difference between NULL & NUL keywords in C?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above