how many error occurs in C language ?
Answers were Sorted based on User's Feedback
Answer / kalpana.y
we canot say that c language has how many errors
it is based on paticular program
| Is This Answer Correct ? | 20 Yes | 42 No |
What is wrong with this code?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
what is the difference b/w NULL and null?
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
What are the Advantages of using macro
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Why do we use stdio h and conio h?
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
what is develop in c language
program to print circle structure
Write any data structure program (stack implementation)