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 |
which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
I need a sort of an approximate strcmp routine?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
What are the different types of objects used in c?
What is the newline escape sequence?
What is the process of writing the null pointer?
Explain what math functions are available for integers? For floating point?
In a switch statement, explain what will happen if a break statement is omitted?
What are reserved words with a programming language?
what is ANSI and ISO
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
What is data types?