Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


how many error occurs in C language ?

Answers were Sorted based on User's Feedback



how many error occurs in C language ?..

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

how many error occurs in C language ?..

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

how many error occurs in C language ?..

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

how many error occurs in C language ?..

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

how many error occurs in C language ?..

Answer / umesh

all ans is currect

Is This Answer Correct ?    0 Yes 0 No

how many error occurs in C language ?..

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

how many error occurs in C language ?..

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

how many error occurs in C language ?..

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

how many error occurs in C language ?..

Answer / gracy

when the question is correct the answer will be correct
with out errors

Is This Answer Correct ?    0 Yes 4 No

how many error occurs in C language ?..

Answer / mohmedali

errors depends on that programs and human mistakes.

Is This Answer Correct ?    20 Yes 27 No

Post New Answer

More C Interview Questions

Explain what is operator promotion?

0 Answers  


What is the use of the sizeof operator?

2 Answers  


Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1

6 Answers  


Do you have any idea about the use of "auto" keyword?

0 Answers  


how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *

3 Answers  


Write a program to print distinct words in an input along with their count in input in decreasing order of their count..

1 Answers  


What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }

4 Answers   CTS, Oracle,


I have seen function declarations that look like this

0 Answers  


Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.

0 Answers   Aspiring Minds,


What is data types?

0 Answers  


write a c program to find the square of a 5 digit number and print the result.

5 Answers   Accenture, Sasken, Vimukti Technologies,


f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?

7 Answers   Hughes,


Categories