how many times of error occur in C
Answers were Sorted based on User's Feedback
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 |
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.
Why does notstrcat(string, "!");Work?
I want tcs placement papers of 2004-2009 , its urgent
Which is the memory area not included in C program? give the reason
program to find middle element of linklist?
How can I access memory located at a certain address?
Does free set pointer to null?
where are auto variables stored? What are the characteristics of an auto variable?
What is the difference between union and structure in c?
In a byte, what is the maximum decimal number that you can accommodate?
How can I find the modification date and time of a file?
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)