what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / sun-ny
Junction Actual Virtual Application
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Which is better oop or procedural?
What does c in a circle mean?
What is the use of a static variable in c?
What is character set?
What is difference between static and global variable in c?
What is class and object in c?
Is null always defined as 0(zero)?
Are the outer parentheses in return statements really optional?
How to define structures? ·
What is string length in c?
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); }
Do variables need to be initialized?
What is an auto keyword in c?
Difference between Shallow copy and Deep copy?
what is a constant pointer in C