What are the languages are portable and platform
independent?Why they are like that?
Answer / racika
Java is portable and platform independent since we can run
those class files in any of the OS.
Is This Answer Correct ? | 3 Yes | 0 No |
write a c program to find biggest of 3 number without relational operator?
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?
Why do we use & in c?
What is a example of a variable?
what is the self-referential structure?
how can i sort numbers from ascending order and descending order using turbo c..
the data type used for unlimited value in c and how to do this program
How does free() know explain how much memory to release?
what is an inline function?
What are the types of i/o functions?
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 ].
Write any data structure program (stack implementation)