Is there any book to know about Basics of C Language?
Answers were Sorted based on User's Feedback
Answer / samir
yes,
Programming with C
Author is yashwant Kanetkar
| Is This Answer Correct ? | 4 Yes | 0 No |
for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float
What is the difference between exit() and _exit()?
What are the different types of errors?
Explain low-order bytes.
What is a string?
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
what are bitwise shift operators?
What is a node in c?
Can we access array using pointer in c language?
What is extern variable in c with example?
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
Why does the call char scanf work?