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
How can I prevent another program from modifying part of a file that I am modifying?
What is a program flowchart and explain how does it help in writing a program?
How do I declare a pointer to an array?
Tell me what are bitwise shift operators?
Differentiate between a structure and a union.
What is difference between structure and union in c programming?
How can I read in an object file and jump to locations in it?
write a program to find the given number is prime or not
2 Answers Accenture, Vasutech,
Write a code to remove duplicates in a string.
Can a pointer point to null?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?