How can I call fortran?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages of union?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
How can you print HELLO WORLD without using "semicolon"?
Why does the call char scanf work?
C,c++, Java is all are structural oriented or procedure oriented language..?
can we execute the program with the object file
What is masking?
if array a conatins 'n' elements and array b conatins 'n-1' elements.array b has all element which are present in array a but one element is missing in array b. find that element.
18 Answers Parexel, Ram Infotech, Zycus Infotech,
Between macros and functions,which is better to use and why?
HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I NEED AN ANSWER THAT IMPRESS THE INTERVIEWER
If fflush wont work, what can I use to flush input?
Difference between goto, long jmp() and setjmp()?