Answer Posted / meenu
3 types of errors. logical , syntax and run time.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Can math operations be performed on a void pointer?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
How many keywords (reserve words) are in c?
Is main a keyword in c?
What are header files in c programming?
How is a structure member accessed?
What are different types of variables in c?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
write a programming in c to find the sum of all elements in an array through function.
what are # pragma staments?
Why we use conio h in c?
What is a lookup table in c?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is %s and %d in c?
What is meant by high-order and low-order bytes?