Submitted Questions

  • Write a C/C++ program to add a user to MySQL.

    The user should be permitted to only "SELECT" entries from the given database. What resources did you use to do research for this project? What development tools did you do use to complete the project? How did you test & debug the project? Why have you chosen to use the programming language used in the project?

    vishnu raju

    • Mar 13th, 2012

    try this :)"cpp #include #include #include #include int main() { char name[10]; char password[10]; char database[10]; char addUser[60]=""; char grantACC[60]=""; // initiali...