ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip   To Refer this Site to Your Friends   Click Here
Google
 
Categories  >>  Software  >>  Programming Languages  >>  C
 
 


 

 
 C interview questions  C Interview Questions
 C++ interview questions  C++ Interview Questions
 VC++ interview questions  VC++ Interview Questions
 Delphi interview questions  Delphi Interview Questions
 Programming Languages AllOther interview questions  Programming Languages AllOther Interview Questions
Question
how many error occurs in C language ?
 Question Submitted By :: Rusmguys
I also faced this Question!!     Rank Answer Posted By  
 
  Re: how many error occurs in C language ?
Answer
# 1
Errors may be compile time and run time. compile time 
errors are the logical errors and syntax errors whic are 
indicated by the compiler after the compilation errors. The 
errors which occur after the copilation are runtime errors
 
Is This Answer Correct ?    6 Yes 1 No
Kawal
 
  Re: how many error occurs in C language ?
Answer
# 2
3 types of error occurs in c language ie syntax error, 
segment error, and linking error.
syntax error and segment error occurs during compailation 
and linking error occurs during runtime
 
Is This Answer Correct ?    7 Yes 1 No
Guest
 
 
 
  Re: how many error occurs in C language ?
Answer
# 3
3 errors syntax and segment during compilation and logical
during runtime
 
Is This Answer Correct ?    6 Yes 1 No
Swapnil
 
  Re: how many error occurs in C language ?
Answer
# 4


     we canot say that c language has how many errors
          
     it is based on paticular program
 
Is This Answer Correct ?    2 Yes 5 No
Kalpana.y
 
  Re: how many error occurs in C language ?
Answer
# 5
errors depends on that programs and human mistakes.
 
Is This Answer Correct ?    3 Yes 3 No
Mohmedali
 
  Re: how many error occurs in C language ?
Answer
# 6
Hi kalpana please read and understand the question properly 
before answering the question,please dont be too smart.
 
Is This Answer Correct ?    2 Yes 2 No
Yuvaraj
 
  Re: how many error occurs in C language ?
Answer
# 7
there are many types of errors in c
 
Is This Answer Correct ?    2 Yes 0 No
Abhinav
 
  Re: how many error occurs in C language ?
Answer
# 8
How can we say how many errors in C language,but Usually 
Every Language has some errors like Syntaical and 
Symantical Errors
Syntatical Errors are the error in the syntax like int x.
but here instead of  semi colon we palce dot that is the 
syntatical error.
Symantical Errors: The errors are in the symantics like If 
is the keyword instead of that we write ef
then the meaning is changed that is symantical errors.
The above two errors are Compile time errors and we have 
some runtime errors.They are due to some infinite loops 
garbage collection or memory shortage or wrong Inputs
 
Is This Answer Correct ?    2 Yes 0 No
Jayasrinivas.donavalli
 
  Re: how many error occurs in C language ?
Answer
# 9
many types error in c language but commonly three types of 
error first one syntax error means if any one create a 
program in c language to write some codings at that time 
the person declared a variable properly for ex:
he create a coding intx; no space in variable name and data 
type at that he compiling the program system ask one error 
in your program the error is syntax error in particular 
line you will not declared properly.
second one logical error
logical error means some input function are output function 
is typed wrong at that this type of error occur in your 
program for ex: you type input function scan(""); 
this type of error is run time error
 
Is This Answer Correct ?    0 Yes 0 No
Ramajayam
 

 
 
 
Other C Interview Questions
 
  Question Asked @ Answers
 
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }  2
Write a program to compare two strings without using the strcmp() function Accenture6
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms Convex-Digital4
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast. Verifone3
what is the difference between <stdio.h> and "stdio.h" Kanbay5
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output CitiGroup4
Reverse the part of the number which is present from position i to j. Print the new number.[without using the array] eg: num=789876 i=2 j=5 778986  2
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }  4
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+.... Ignou1
What is true about the following C Functions a.Need not return any value b.Should always return an integer c.Should always return a float d.Should always return more than one value. TCS6
post new interiew question and aptitude test papers  1
write the program for maximum of the following numbers? 122,198,290,71,143,325,98  4
HOW DO YOU HANDLE EXCEPTIONS IN C? AppLabs2
The differences between Windows XP and Windows Visa HCL6
what is the different between if-else and switch statment (other than syntax) CTS9
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); } ME3
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.  4
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type  4
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program Mascot4
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?  2
 
For more C Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com