how many error occurs in C language ?
Answer Posted / kawal
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 ? | 103 Yes | 30 No |
Post New Answer View All Answers
shorting algorithmS
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is the use of function in c?
What are the functions to open and close file in c language?
What is the difference between test design and test case design?
What is the auto keyword good for?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
What is array of pointers to string?
How to delete a node from linked list w/o using collectons?
What do you understand by friend-functions? How are they used?
What are the 4 types of organizational structures?
What happens if you free a pointer twice?
Is it fine to write void main () or main () in c?
Why should I prototype a function?