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
Is return a keyword in c?
How can I pad a string to a known length?
Explain how can I make sure that my program is the only one accessing a file?
Why #include is used in c language?
What is pass by reference in functions?
Tell me when would you use a pointer to a function?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is the stack in c?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
Write a program on swapping (100, 50)
What is pre-emptive data structure and explain it with example?
What is the difference between exit() and _exit() function?
What is the use of putchar function?
#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); }
Which is the best website to learn c programming?