what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / vivek upreti
java is a pure object oriented language.It is very friendly
language. Every body easily understand. It is plateform
indepandent.
| Is This Answer Correct ? | 329 Yes | 143 No |
Post New Answer View All Answers
Is calloc better than malloc?
What is an expression?
What is the difference between text files and binary files?
When should the const modifier be used?
What is pass by reference in c?
Can a pointer be volatile in c?
What is main return c?
What is the stack in c?
Why should I prototype a function?
What are the advantages and disadvantages of a heap?
What is a keyword?
What are the differences between Structures and Arrays?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
What is the difference between c &c++?
What's a good way to check for "close enough" floating-point equality?