what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / ghjkkj
Actuall java is siply a meaning less name given to meneaningful language.....
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Explain how can I avoid the abort, retry, fail messages?
What is advantage of pointer in c?
What is the difference between %d and %i?
Can you pass an entire structure to functions?
What is %d called in c?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
Do you know what are the properties of union in c?
Explain how do you search data in a data file using random access method?
What happens if you free a pointer twice?
How to draw the flowchart for structure programs?
What is c value paradox explain?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
How can you convert integers to binary or hexadecimal?
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); }
Why isn't any of this standardized in c? Any real program has to do some of these things.