what is the difference between unix os and linux os
Answer Posted / prakash.a
unix is a langauge,bt linux is a OS
Is This Answer Correct ? | 7 Yes | 14 No |
Post New Answer View All Answers
Explain what does the function toupper() do?
What is s or c?
What is c programing language?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Explain is it better to bitshift a value than to multiply by 2?
What is omp_num_threads?
Explain how can I pad a string to a known length?
What are the properties of union in c?
What is the difference between struct and typedef struct in c?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
can any one provide me the notes of data structure for ignou cs-62 paper
Is that possible to add pointers to each other?
Why can't I perform arithmetic on a void* pointer?
Explain how do you convert strings to numbers in c?
What is && in c programming?