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
Is anything faster than c?
How to find a missed value, if you want to store 100 values in a 99 sized array?
What is the difference between test design and test case design?
what do you mean by enumeration constant?
What are global variables and how do you declare them?
Do variables need to be initialized?
Explain about block scope in c?
Explain how can you restore a redirected standard stream?
Write program to remove duplicate in an array?
Explain what is the use of a semicolon (;) at the end of every program statement?
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); } }
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.
What is the use of gets and puts?
What is union and structure in c?
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.....