is forign key will be unique key any table or not?
Answers were Sorted based on User's Feedback
Answer / bukke.ramesh naik
no,forign key is reference of table of primary key
| Is This Answer Correct ? | 0 Yes | 0 No |
What is function pointer c?
if a person is buying coconuts of Rs10,and then sell that coconuts of Rs9,with the loss of one rupee.After that the person became a millaniore.how?
where does malloc() function get the memory?
what is the disadvantage of using macros?
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is the difference between ‘g’ and “g” in C?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
What is c preprocessor mean?
write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????
What is the benefit of using an enum rather than a #define constant?