Explain how can a program be made to print the line number where an error occurs?
No Answer is Posted For this Question
Be the First to Post Answer
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
What is function pointer and where we will use it
What are run-time errors?
What is const volatile variable in c?
what is meant by the "equivalence of pointers and arrays" in C?
What is the difference between pure virtual function and virtual function?
What is the difference between fread buffer() and fwrite buffer()?
what is bitwise operator?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
What is variable initialization and why is it important?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What is c mainly used for?