Is fortran faster than c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is true about the following C Functions a.Need not return any value b.Should always return an integer c.Should always return a float d.Should always return more than one value.

11 Answers   TCS,


What is output redirection?

0 Answers  


Which is better pointer or array?

0 Answers  


main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }

0 Answers   Wilco,


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,






biggest of two no's with out using if condition statement

8 Answers  


If the static variable is declared as global, will it be same as extern?

1 Answers   Samsung,


how to use virual function in real time example

1 Answers   CTS, Wipro,


Explain why can’t constant values be used to define an array’s initial size?

0 Answers  


Write a C program to count the number of email on text

0 Answers  


Three major criteria of scheduling.

1 Answers  


can we declare a function in side the structure?

2 Answers   HCL,


Categories