Write a C/C++ program to add a user to MySQL. The user should
be permitted to only "INSERT" into the given database
Answer Posted / jollyvel
i dont know please help
| Is This Answer Correct ? | 14 Yes | 17 No |
Post New Answer View All Answers
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
What is the use of #include in c?
What is main return c?
What is the purpose of clrscr () printf () and getch ()?
What is the maximum length of an identifier?
What is variable declaration and definition in c?
Explain what is wrong with this program statement? Void = 10;
How can I automatically locate a programs configuration files in the same directory as the executable?
Explain the advantages of using macro in c language?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
Explain how can you tell whether two strings are the same?
What is a null string in c?
Is null a keyword in c?
What is static memory allocation? Explain
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }