what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / p mangaraju
no meaning actuaaly
| Is This Answer Correct ? | 224 Yes | 170 No |
Post New Answer View All Answers
Explain what is wrong in this statement?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What is the use of getchar() function?
What is a ternary operator in c?
Explain how do you convert strings to numbers in c?
Explain what are preprocessor directives?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is methods in c?
What is pre-emptive data structure and explain it with example?
How will you divide two numbers in a MACRO?
#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); }
What is main function in c?
Can the “if” function be used in comparing strings?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250