What are runtime error?


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

Post New Answer

More C Interview Questions

Who developed c language?

0 Answers  


how to write palindrome program?

3 Answers  


What do you know about the use of bit field?

0 Answers  


c program to subtract between two numbers without using '-' sign and subtract function.

1 Answers  


what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }

3 Answers  






what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);

10 Answers   IBM,


Write a program to print "hello world" without using a semicolon?

0 Answers  


Write a C++ program without using any loop (if, for, while etc) to print numbers from 1 to 100 and 100 to 1;

18 Answers   Accenture, Cisco, Egentec, HCL, Ideaz, Infosys, M-Systems, MYR, TCS,


Can you think of a way when a program crashed before reaching main? If yes how?

2 Answers  


what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error

9 Answers   Infosys,


Is Exception handling possible in c language?

0 Answers   Wipro,


What is 2 d array in c?

0 Answers  


Categories