what is the difference between ERROR and EXCEPTION?

Answer Posted / maheswarreddy

error is mistake which takes place in step wise execution of a program.exception is nothing but wat v can catch the error to solve it.

Is This Answer Correct ?    16 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is use of overloading?

609


What is object in oop?

679


What are properties in oop?

609


State what is encapsulation and friend function?

699


What is encapsulation in simple terms?

541






#include #include #include #include void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort

2068


What makes a language oop?

598


What does <> mean pseudocode?

624


Explain virtual inheritance?

682


write knight tour problem which is present in datastructure

2165


What is interface in oop?

664


What is the highest level of cohesion?

579


What is the difference between procedural programming and oops?

557


What is destructor in oop?

625


Where You Can Use Interface in your Project

1427