Differentiate b/w Modify and Update commands giving example.
Answer / ananth kumar
1.update comand is to make changes to the record in the
table
2.modify command is used to add,modify,drop a column in a
table
Is This Answer Correct ? | 3 Yes | 1 No |
What are the benefits of c language?
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
Why array is used in c?
What are valid operations on pointers?
Explain Function Pointer?
How will you allocate memory to a double pointer ?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
How do I get an accurate error status return from system on ms-dos?
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????
how to get the starting address of file stored in harddisk through 'C'program.
program to print upper & lower triangle of a matrix
Explain what standard functions are available to manipulate strings?