Is fortran still used in 2018?


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

Post New Answer

More C Interview Questions

Why use int main instead of void main?

0 Answers  


Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error

8 Answers   IBM,


What are the two types of structure?

0 Answers  


How can I make a program in c to print 'Hello' without using semicolon in the code?

9 Answers   C DAC, Practical Viva Questions,


Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain

2 Answers  






what is dangling pointer?

1 Answers   LG Soft,


What is keyword in c?

0 Answers  


What is the difference between malloc calloc and realloc in c?

0 Answers  


write a program to find the given number is prime or not

2 Answers   Accenture, Vasutech,


What are the advantages and disadvantages of c language?

0 Answers  


wat s the meaning of (int *)p +4;

2 Answers  


/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }

1 Answers   CDAC,


Categories