how many error occurs in C language ?
Answer Posted / d.v.s.rama krishna
according to the program coding the error occurs. basically
there are only three types of errors. the type of error may
decided from these.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Difference between constant pointer and pointer to a constant.
Why pointers are used?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is printf () in c?
What is the newline escape sequence?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
In C language, a variable name cannot contain?
Write a Program to find whether the given number or string is palindrome.
Is sizeof a keyword in c?
What is a global variable in c?
What does. int *x[](); means ?
Do pointers store the address of value or the actual value of a variable?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Can you write the algorithm for Queue?