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 use of the sizeof operator?
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
where can function pointers be used?
write a program to print the one dimensional array.
write a program to find the frequency of a number
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
What is a Genralised LInked List?? Please give a detailed explation of it..
write a c code "if you give a any decimal number then print that number in english alphabet"? ex: i/p: 552 o/p: five hundred fifty two ...
Why dont c comments nest?
What do you mean by Recursion Function?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?