how many error occurs in C language ?
Answer Posted / d.v.s.rama krishna
according to the program coding the error occurs. basically
there are only three types of errors. the type of error may
decided from these.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the difference between c &c++?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What is stack in c?
What is indirection in c?
Is fortran still used in 2018?
What is 1d array in c?
How will you divide two numbers in a MACRO?
What is declaration and definition in c?
What is the difference between malloc() and calloc()?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Explain how can I convert a number to a string?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
Is anything faster than c?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0