how many times of error occur in C
Answers were Sorted based on User's Feedback
Answer / meenu
3 types of errors. logical , syntax and run time.
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / vinay tiwari
there are three types of error in c
logical,syntax,linking error
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / pressi
There are three types of errors in C
Compiler, Logical, Run-Time errors
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ambar
3 types of errors in c are:
symmantic error(logical error)
syntax error(language gramatical error)
run time error(compilation or executing error)
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / xyz
there is no limit......what
about.....lvalue&rvalue...headerfile...fatal eroor.....in
fatal error there re so many error...i think there is no
cunt on this
Is This Answer Correct ? | 1 Yes | 0 No |
What are the advantages of using new operator as compared to the function malloc ()?
What is array within structure?
What is the difference between declaring a variable and defining a variable?
write a program that explain #define and # undef directive
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
Why do we use int main instead of void main in c?
Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.
Is it possible to run a c program without using main?If yes HOW??
prog for 1st five prime numbers in 2^x - 1
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
What is a char in c?
How are Structure passing and returning implemented by the complier?