How to use c/c++ code in JAVA
Answer Posted / manchu
yes the above answer ids write but when i try to run the c
file i got an error as
'cl' is not recognized as an internal or external command,
operable program or batch file.
can anyone tell me whether i should include any directory
path ..
otherwise please tell me the steps that should be done
before running the c file
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
Difference between malloc() and calloc() function?
What is wrong with this program statement? void = 10;
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What language is c written?
What is the use of ?: Operator?
What is null pointer in c?
What is #define used for in c?
What are the advantages and disadvantages of pointers?
Explain what does a function declared as pascal do differently?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Which is better oop or procedural?
What is the best organizational structure?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is null in c?
What library is sizeof in c?