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 total number of disk writes by MySQL


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

every function has return the value?

1 Answers  


What is the symbol indicated the c-preprocessor?

0 Answers  


For what purpose null pointer used?

0 Answers  


Do character constants represent numerical values?

0 Answers  


how many key words availabel in c a) 28 b) 31 c) 32

0 Answers  






What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }

4 Answers   Infosys, TCS,


what type of errors are checked during compilation

3 Answers  


6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1

4 Answers  


What does sizeof return c?

0 Answers  


Program to find the absolute value of given integer using Conditional Operators

6 Answers   N Tech,


Develop a program that computes the new price of an item. The program should receive a character variable colour and a double precision floating-point variable price from the user. Discount rate is determined based on the colour of the discount sticker, as shown in the following table. An error message should be printed if an invalid colour has been entered

1 Answers  


What is a #include preprocessor?

0 Answers  


Categories