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 |
What is a symbolic constant?
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
Why does the call char scanf work?
Can we increase size of array in c?
Explain argument and its types.
tell me the full form of c?
Why is c used in embedded systems?
How do I convert a string to all upper or lower case?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
What are operators in c?
related to rdbms query .
What is a lvalue