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 |
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What should malloc(0) do?
Do you know what is the purpose of 'extern' keyword in a function declaration?
how to find binary of number?
what are two kinds of java
can we access one file to one directory?
Is it better to use a macro or a function?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(“%d”,s.x); }
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
Explain the difference between struct and union.
1. Write a program to reverse every second word in a given sentence.
What is the memory allocated by the following definition ? int (*x)();