how many times of error occur in C

Answers were Sorted based on User's Feedback



how many times of error occur in C..

Answer / arun

syntax Error,
compile time Error,
runtime Error...

we cont consider logical Errors as Errors...
it is consider to be bugs...

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.

1 Answers  


Why does notstrcat(string, "!");Work?

1 Answers  


I want tcs placement papers of 2004-2009 , its urgent

6 Answers   TCS, Wipro,


Which is the memory area not included in C program? give the reason

1 Answers   IBM, TCS,


program to find middle element of linklist?

1 Answers   Huawei,


How can I access memory located at a certain address?

3 Answers   Verizon,


Does free set pointer to null?

1 Answers  


where are auto variables stored? What are the characteristics of an auto variable?

1 Answers  


What is the difference between union and structure in c?

1 Answers  


In a byte, what is the maximum decimal number that you can accommodate?

1 Answers  


How can I find the modification date and time of a file?

1 Answers  


given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)

6 Answers   amu, TCS,


Categories