How to use c/c++ code in JAVA
Answer Posted / devendra
NO IDE USE IN C++ PLSE HELP ME
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Tell us the use of fflush() function in c language?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
Write a program of prime number using recursion.
Why main is used in c?
Difference between pass by reference and pass by value?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
#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 memory area not included in C program? give the reason
What is a good data structure to use for storing lines of text?
What is wrong with this program statement? void = 10;
What is hash table in c?
Is python a c language?
What would be an example of a structure analogous to structure c?
What is the most efficient way to store flag values?
How do you write a program which produces its own source code as output?