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
What is the difference between null pointer and the void pointer?
How to print "I Love My India" without using semi colon?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
What is a program flowchart and how does it help in writing a program?
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
An interactive c program to read basic salary of 15 persons. each person gets 25% of basic as HRA, 15%of basic as conveyance allowances, 10%of basic as entertainment allowances.The total salary is calculated by adding basic+HRA+CA+EA.Calculate how many out of 15 get salary above 10,000.Rs also print the salary of each employee
What is the difference between exit() and _exit() function?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
1. Write a program to reverse every second word in a given sentence.
Explain what are the __date__ and __time__ preprocessor commands?