what is the difference between unix os and linux os
Answer Posted / manish soni bca 3rd year jaipu
1.unxi is command base o.s it mean unix is CUI(character
user interface)but the linux is GUI base operting system.
2.unix is firstly writen with (which language come before
c).after invented of the c.unix in writen in(95% part) c
language. or we can say that c language actually developed
for impliment the unix operting system.
3.linux is unix base o.s. or linux is improvement of unix
o.s.
4.linux lorwards is owner or developer of linux o.s.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can you read a directory in a C program?
What is #error and use of it?
what is the diffrenet bettwen HTTP and internet protocol
What is function definition in c?
What is file in c preprocessor?
What is output redirection?
What is unsigned int in c?
What is the difference between pure virtual function and virtual function?
What are compound statements?
What is a c token and types of c tokens?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
I have a varargs function which accepts a float parameter?
What is structure and union in c?
When should we use pointers in a c program?
What is multidimensional arrays