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
Explain low-order bytes.
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What are global variables and explain how do you declare them?
What are the 32 keywords in c?
What is the use of pragma in embedded c?
What is the use of function in c?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
Why is sprintf unsafe?
Can a variable be both constant and volatile?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
What is the difference between memcpy and memmove?
Define C in your own Language.
Which is better oop or procedural?
What are logical errors and how does it differ from syntax errors?