what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / israth
it has actually no meaning to describe
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can we replace the struct function in tree syntax with a union?
What language is lisp written in?
What are comments and how do you insert it in a C program?
what are non standard function in c
Do you know the purpose of 'register' keyword?
What is c language & why it is used?
What is variable and explain rules to declare variable in c?
What is console in c language?
What is the meaning of && in c?
How can a process change an environment variable in its caller?
Why c is called procedure oriented language?
What is binary tree in c?
Explain how can you determine the size of an allocated portion of memory?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }