what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / padmaja
just another virtual architecture
| Is This Answer Correct ? | 6 Yes | 9 No |
Post New Answer View All Answers
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
simple program of graphics and their output display
Explain what is the difference between functions getch() and getche()?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What functions are used for dynamic memory allocation in c language?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Explain what does the function toupper() do?
Write a program to print "hello world" without using a semicolon?
What are the uses of a pointer?
Where are local variables stored in c?
What is typedef example?
What is include directive in c?
What is define directive?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
How can I do graphics in c?