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 is call by reference in functions?
what is the little endian and big endian?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
What is structure data type in c?
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
What is the auto keyword good for?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
C language questions for civil engineering
How can I open a file so that other programs can update it at the same time?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }
write a recursive program in'c'to find whether a given five digit number is a palindrome or not