ftwhayabusa_ryu said:C : How to program written by Deitel & Deitel published by Prentice Hall
ftwhayabusa_ryu said:C : How to program written by Deitel & Deitel published by Prentice Hall
I never learned from Kanetkar,Yamaraj said:Anyone recommending Kanetkar books should be hanged and fed to vultures.
C Primer Plus is an excellent text. K&R is tough on beginners, and was originally meant for programmers not familiar with C. Stephen Kochan's Programming in C, 3rd edition is also quite good for starters. I also recommend A Book on C by Kelley and Pohl.
#include<stdio.h>
int main()
{
printf("hello world \n");
return 0;
}
^^please tell why??Yamaraj said:Anyone recommending Kanetkar books should be hanged and fed to vultures.
wise man said:All books by Yashwant Kanetkar including books like Let US C, Working with C, Data structure through C. The problem with his books is that, though they are easy to read, but they contain lots of factual errors. They do not address the fact that certain aspects of C is implementation dependent.
praka123 said:^...@gary:waiting for ur fast track to C programming
You also find TC++ ok. I came, I saw, I detested. And I won't explain why.adi007 said:^^please tell why??
though i have not learned C by it but i found it ok...
#include<iostream>