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 |
write a c program in such a way that if we enter the today date the output should be next day's date.
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
how to write hello word without using semicolon at the end?
Explain how do you convert strings to numbers in c?
What does volatile do?
What is the difference between #include and #include 'file' ?
Explain how can I pad a string to a known length?
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
What is wrong with this program statement? void = 10;
What is the difference between void main and main in c?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????