what is the difference between unix os and linux os
Answer Posted / sagar
both unix and linux is an os
bt the only thing differs is the userinterface..
unix is for single users,while llinux is for multiusers..
| Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
What are derived data types in c?
What are pragmas and what are they good for?
What is the -> in c?
What 'lex' does?
Can you add pointers together? Why would you?
What are pointers? What are different types of pointers?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
I need previous papers of CSC.......plz help out by posting them.......
Write a program of advanced Fibonacci series.
Differentiate Source Codes from Object Codes
How can I direct output to the printer?
What is f'n in math?
What is string function in c?
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(); }
Why & is used in c?