what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / pradeepthi bonthala
Java is not an acroynm its a coffee seed which they used in
coffee while designing java software so they named it as
java
| Is This Answer Correct ? | 624 Yes | 188 No |
Post New Answer View All Answers
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
How many levels of pointers can you have?
How is a pointer variable declared?
I need a sort of an approximate strcmp routine?
Who developed c language and when?
What are lookup tables in c?
Differentiate between declaring a variable and defining a variable?
What are the functions to open and close file in c language?
write a progrmm in c language take user interface generate table using for loop?
What is the use of getchar functions?
What was noalias and what ever happened to it?
Can stdout be forced to print somewhere other than the screen?
Write a program to print factorial of given number without using recursion?
Why we use conio h in c?