Write a C/C++ program to add a user to MySQL. The user
should be permitted to only "INSERT" into the given database.
No Answer is Posted For this Question
Be the First to Post Answer
Can you apply link and association interchangeably?
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.
What is the difference between typedef and #define?
Tell me what is null pointer in c?
What is the use of define in c?
What is a wrapper function in c?
what is the diff b/w static and non static variables in C. Give some examples plz.
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
What is the difference between fork() and vfork()?
What is the difference between struct and union in C?