how many error occurs in C language ?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are runtime error?

629


How can a program be made to print the name of a source file where an error occurs?

731


What is structure of c program?

607


Write a C program linear.c that creates a sequence of processes with a given length. By sequence it is meant that each created process has exactly one child. Let's look at some example outputs for the program. Here the entire process sequence consists of process 18181: Sara@dell:~/OSSS$ ./linear 1 Creating process sequence of length 1. 18181 begins the sequence. An example for a sequence of length three: Sara@dell:~/OSSS$ ./linear 3 Creating process sequence of length 3. 18233 begins the sequence. 18234 is child of 18233 18235 is child of 18234 ........ this is coad .... BUt i could not compleate it .....:( #include #include #include #include int main(int argc, char *argv[]) { int N; pid_t pid; int cont; if (argc != 2) { printf("Wrong number of command-line parameters!\n"); return 1; } N = atoi(argv[1]); printf("Creating process sequence of length %d.\n",N); printf("%d begins the sequence.\n",getpid()); /* What I have to do next ?????? */ }

1620


What is the difference between procedural and declarative language?

651






Does c have class?

613


How can I change their mode to binary?

698


how can use subset in c program and give more example

1502


hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm

1633


What is a char c?

592


What is derived datatype in c?

637


What are variables and it what way is it different from constants?

786


Where are some collections of useful code fragments and examples?

716


Where we use clrscr in c?

708


What is a void pointer in c?

608