what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / nithya
THERE IS NO FULL FORM FOR JAVA. JAVA IS AN NAME OF COFFEE
SEED
Is This Answer Correct ? | 197 Yes | 96 No |
Post New Answer View All Answers
Is there a way to compare two structure variables?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
Write a c program to demonstrate character and string constants?
What is the difference between new and malloc functions?
What is the value of c?
What is the full form of getch?
What is the difference between break and continue?
What does nil mean in c?
What are unions in c?
write a c program in such a way that if we enter the today date the output should be next day's date.
How can you convert integers to binary or hexadecimal?
When should the const modifier be used?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
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); }