How can a program be made to print the name of a source file where an error occurs?


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

Post New Answer

More C Interview Questions

Magic square

0 Answers  


What is the right type to use for boolean values in c?

0 Answers  


Can you return null in c?

0 Answers  


What is the difference between static and global variables?

1 Answers  


What is register variable in c language?

0 Answers  






Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10

8 Answers   Aspire,


What are the concepts introduced in OOPs?

3 Answers  


related proverb of "dont count your chicken before it hatches"

1 Answers  


What is the difference between pure virtual function and virtual function?

0 Answers  


What is a MAC Address?

0 Answers  


i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


what is mean by Garbage collection ? Please answer me. Advance thanks.

4 Answers   Excel,


Categories