How to use c/c++ code in JAVA
Answer Posted / mohmedali
use c/ c++ linkage specifications
| Is This Answer Correct ? | 12 Yes | 4 No |
Post New Answer View All Answers
What is the benefit of using const for declaring constants?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
what is uses of .net
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What is meant by errors and debugging?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
Explain the properties of union. What is the size of a union variable
write a program to find the given number is prime or not
What are valid operations on pointers?
Does c have function or method?
What is the difference between functions abs() and fabs()?
What is an lvalue?
Is main a keyword in c?
What is a structure member in c?
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.