what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / revathyumavanitha
justifycomputer architecture for virtual application
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
The difference between printf and fprintf is ?
How can I avoid the abort, retry, fail messages?
Explain the term printf() and scanf() used in c language?
#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); }
State the difference between realloc and free.
Explain how are 16- and 32-bit numbers stored?
Simplify the program segment if X = B then C ← true else C ← false
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
How can I remove the trailing spaces from a string?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
What is scope of variable in c?
What is putchar() function?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
What is the difference between a free-standing and a hosted environment?
write a program to concatenation the string using switch case?