how many error occurs in C language ?
Answers were Sorted based on User's Feedback
Answer / d.v.s.rama krishna
according to the program coding the error occurs. basically
there are only three types of errors. the type of error may
decided from these.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / lnk
Compile Time Errors :
mostly because of false syntax used or no return
values assigned ...
Run time Errors :
allt he errors that occur during execution
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / swapnashree pradhan
There r two types of errors r occurs first is the compiling
and second is the run time error .compiling error r two
types syntax error ,segment error.then run runtime error r
two types logical error, linking error
.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / santosh kumar sharma
Basically there are only two type of error
(1) compile time error
(2) run time error
In compile time error there are two types of error first is
syntex error and second is segment error.
In run time error there are also two types of erro logical
error and linking error
By santosh kumar sharma
Is This Answer Correct ? | 2 Yes | 2 No |
Answer / ravi kumar
There are 3 types of Errors in c Language
1. Syntax Errors
2. Linked Errors
3. Runtime Errors
Is This Answer Correct ? | 2 Yes | 3 No |
Answer / mrs.ahmer
There are three types of errors in C language.
1:syntax error:-It occurs if The statement terminator is
missing at the end of statement,A misspelled keyword is
used in the program,Any of the delimiters is missing.
2:Logical error:-It occurs due to wrong logic of
programmer.it usually occurs when programmer writes wrong
formula to calculate the result.
3:Runtime error:-A type of error that occurs during the
execution of a program is known as runtime error.If user
may ask the program to open a file that does not exist or
the user may enter wrong type of data.
Is This Answer Correct ? | 1 Yes | 2 No |
Answer / satya prakash
I think there are four error in c language symtex
error,logical error(sementex error) run time error, linking
error
Is This Answer Correct ? | 2 Yes | 6 No |
Answer / gracy
when the question is correct the answer will be correct
with out errors
Is This Answer Correct ? | 0 Yes | 4 No |
Answer / mohmedali
errors depends on that programs and human mistakes.
Is This Answer Correct ? | 20 Yes | 27 No |
how can we Declare a variable in c without defining it.
What is string length in c?
What are the different types of data structures in c?
Develop a program that computes the new price of an item. The program should receive a character variable colour and a double precision floating-point variable price from the user. Discount rate is determined based on the colour of the discount sticker, as shown in the following table. An error message should be printed if an invalid colour has been entered
What is 'bus error'?
Whats s or c mean?
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
What is clrscr in c?
difference between spiral and waterfall model
What is the difference between Printf(..) and sprint(...) ?
how 2 compile & execute c program with out using editor?