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 |
How the processor registers can be used in C ?
How to add two numbers without using semicolon n c????
yogesh patil in dell
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is console in c language?
How do we open a binary file in Read/Write mode in C?
Tell me what are bitwise shift operators?
Write a program in c using only loops to print * * * * * *******
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
Describe advantages and disadvantages of the various stock sorting algorithms
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason