How to use c/c++ code in JAVA
Answer Posted / thangavelbalu
Using "native" keyword
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
What is a void pointer? When is a void pointer used?
What is function and its example?
Can we change the value of constant variable in c?
What is function definition in c?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
Explain how are 16- and 32-bit numbers stored?
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
writ a program to compare using strcmp VIVA and viva with its output.
Here is a neat trick for checking whether two strings are equal
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
What is register variable in c language?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
Why can arithmetic operations not be performed on void pointers?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
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'); }