how many error occurs in C language ?

Answer Posted / lnk

Compile Time Errors :
mostly because of false syntax used or no return
values assigned ...

Run time Errors :
allt he errors that occur during execution

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is anything faster than c?

779


How to find a missed value, if you want to store 100 values in a 99 sized array?

1092


What is the difference between test design and test case design?

1832


what do you mean by enumeration constant?

792


What are global variables and how do you declare them?

791


Do variables need to be initialized?

813


Explain about block scope in c?

858


Explain how can you restore a redirected standard stream?

786


Write program to remove duplicate in an array?

820


Explain what is the use of a semicolon (;) at the end of every program statement?

971


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

2265


Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.

2023


What is the use of gets and puts?

776


What is union and structure in c?

865


how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....

1588