How to use c/c++ code in JAVA
Answer Posted / guest
basically c is similar to java than c++, its better to use
the code in c which is very similar to java...
| Is This Answer Correct ? | 19 Yes | 20 No |
Post New Answer View All Answers
Explain how can type-insensitive macros be created?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
Is c is a procedural language?
Why is c still so popular?
What is the use of a ‘ ’ character?
What are the disadvantages of a shell structure?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
What are the different types of data structures in c?
How can my program discover the complete pathname to the executable from which it was invoked?
Is array name a pointer?
Explain bit masking in c?
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
Write a C program to count the number of email on text
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What are valid signatures for the Main function?