Author Topic: Learning C above the Basics Level ???  (Read 5602 times)

0 Members and 2 Guests are viewing this topic.

Offline jeyanthinath

  • /dev/null
  • *
  • Posts: 17
  • Cookies: -2
  • Do what you think !!!
    • View Profile
Learning C above the Basics Level ???
« on: August 03, 2012, 04:34:58 pm »
I know C to some extend   :P , but i can't learn it up to the higher range  :-X


Can some one suggest any ideas about it ?? :o 


Which book i have to follow to get Complete Mastering in C  8)  " .
« Last Edit: August 03, 2012, 04:39:00 pm by jeyanthinath »
JMR

th3g00n

  • Guest
Re: Learning C above the Basics Level ???
« Reply #1 on: August 03, 2012, 06:04:59 pm »
I suggest you go for "C How to Program" by Paul and Harvy Deitel or K&R. Will try and upload when/if I have the time.
« Last Edit: December 22, 2012, 02:39:53 am by th3g00n »

ajmal.josh

  • Guest
Re: Learning C above the Basics Level ???
« Reply #2 on: August 31, 2012, 11:32:23 am »
ANSI C (E. Balagurusamy) is the best book for study basics of C. Simple book with examples and explanations. Best book I seen in basics of C.

Code: (c) [Select]
#include <stdio.h>
main()
{
     char name[50];
     printf("whats your name?");
     scanf("%s", &name);
     printf("Hello, Mr. %s how are you?", name);
     getch();
}

Staff note: Edit your posts and use the code tags...
« Last Edit: August 31, 2012, 02:18:06 pm by Kulverstukas »

Offline p_2001

  • Royal Highness
  • ****
  • Posts: 684
  • Cookies: -64
    • View Profile
Re: Learning C above the Basics Level ???
« Reply #3 on: August 31, 2012, 12:25:34 pm »
ANSI C (E. Balagurusamy) is the best book for study basics of C. Simple book with examples and explanations. Best book I seen in basics of C.
piece of trash.. Good for one night mugging
"Always have a plan"

ajmal.josh

  • Guest
Re: Learning C above the Basics Level ???
« Reply #4 on: August 31, 2012, 01:26:39 pm »
You will have your own ways to think & I have other way.

Offline techb

  • Soy Sauce Feeler
  • Global Moderator
  • King
  • *
  • Posts: 2350
  • Cookies: 345
  • Aliens do in fact wear hats.
    • View Profile
    • github
Re: Learning C above the Basics Level ???
« Reply #5 on: August 31, 2012, 01:56:23 pm »
piece of trash.. Good for one night mugging

Agreed.

#include <stdio.h>
main()
{
     char name[50];
     printf("whats your name?");
     scanf("%s", &name);
     printf("Hello, Mr. %s how are you?", name);
     getch();
}

OP wants stuff beyond basics, and you also need to use the code tags and don't double post, modify your original post.

The Art of Exploitation SE would be a good step up, it will teach hacking along with C.
« Last Edit: August 31, 2012, 01:58:00 pm by techb »
>>>import this
-----------------------------

ajmal.josh

  • Guest
Re: Learning C above the Basics Level ???
« Reply #6 on: August 31, 2012, 02:42:31 pm »
Agreed.

OP wants stuff beyond basics, and you also need to use the code tags and don't double post, modify your original post.

The Art of Exploitation SE would be a good step up, it will teach hacking along with C.

C Programming Language by Kernighan and Ritchie is the basics of C Language (Not on Hacking, Only in programming basics)

Offline RedBullAddicted

  • VIP
  • Sir
  • *
  • Posts: 519
  • Cookies: 189
    • View Profile
Re: Learning C above the Basics Level ???
« Reply #7 on: August 31, 2012, 03:15:51 pm »
I agree with the suggestion of techb. The Art of exploitation is a very advanced book. I bought it and read until page 50 and couldn't follow it. So I decided to learn more about programming and maybe one day I will try to read and understand it again :)
Deep into that darkness peering, long I stood there, wondering, fearing, doubting, dreaming dreams no mortal ever dared to dream before. - Edgar Allan Poe

Offline cojacker

  • /dev/null
  • *
  • Posts: 5
  • Cookies: 1
    • View Profile
Re: Learning C above the Basics Level ???
« Reply #8 on: September 04, 2012, 03:40:19 am »
Quote
C Programming Language by Kernighan and Ritchie is the basics of C Language

I would strongly reccomend this book as well as  it is a relatively compressed book for all the knowledge it contains and was written by the creators of c. I like the practicality of the book as it presents practical 'programming' problems. A  sufficient understanding of computer systems organisation and architecture(low-level)  is as a prerequisite as the author does explain in the intro that it is not written for beginners.
"The will to conquer is the first condition of victory."

Offline jeyanthinath

  • /dev/null
  • *
  • Posts: 17
  • Cookies: -2
  • Do what you think !!!
    • View Profile
Re: Learning C above the Basics Level ???
« Reply #9 on: September 04, 2012, 06:30:25 pm »
I would strongly reccomend this book as well as  it is a relatively compressed book for all the knowledge it contains and was written by the creators of c. I like the practicality of the book as it presents practical 'programming' problems. A  sufficient understanding of computer systems organisation and architecture(low-level)  is as a prerequisite as the author does explain in the intro that it is not written for beginners.


I already learned it to a level and I Promise no one can return such book but it does not more and more details about C (I am asking for professional level)..
JMR

Offline iTpHo3NiX

  • EZ's Pirate Captain
  • Administrator
  • Titan
  • *
  • Posts: 2920
  • Cookies: 328
    • View Profile
    • EvilZone
Re: Learning C above the Basics Level ???
« Reply #10 on: September 04, 2012, 08:57:50 pm »
What about the C primer plus book lucid posted?
https://evilzone.org/ebooks/mother-fucking-finally/

Its like 800+pages of C knowledge
[09:27] (+lenoch) iTpHo3NiX can even manipulate me to suck dick
[09:27] (+lenoch) oh no that's voluntary
[09:27] (+lenoch) sorry

Offline p_2001

  • Royal Highness
  • ****
  • Posts: 684
  • Cookies: -64
    • View Profile
Re: Learning C above the Basics Level ???
« Reply #11 on: September 05, 2012, 04:58:23 am »
There is a book.. How not to program in c. Points out usual mistakes. Uploaded in ez. Just see the ebooks section. the book helped me in getting out of wtf situations :)
"Always have a plan"

Offline jeyanthinath

  • /dev/null
  • *
  • Posts: 17
  • Cookies: -2
  • Do what you think !!!
    • View Profile
Re: Learning C above the Basics Level ???
« Reply #12 on: September 06, 2012, 12:37:27 pm »
What about the C primer plus book lucid posted?
https://evilzone.org/ebooks/mother-fucking-finally/

Its like 800+pages of C knowledge


Thanks I downloaded i will download it !!!


How to became a hacker instead of a ordinary programmer ...

JMR

Offline iTpHo3NiX

  • EZ's Pirate Captain
  • Administrator
  • Titan
  • *
  • Posts: 2920
  • Cookies: 328
    • View Profile
    • EvilZone
Re: Learning C above the Basics Level ???
« Reply #13 on: September 06, 2012, 09:21:16 pm »
How to became a hacker instead of a ordinary programmer ...

To become a "hacker" you need to know what it means first...

Read this VERY IMPORTANT
http://www.catb.org/~esr/faqs/hacker-howto.html
[09:27] (+lenoch) iTpHo3NiX can even manipulate me to suck dick
[09:27] (+lenoch) oh no that's voluntary
[09:27] (+lenoch) sorry

Offline techb

  • Soy Sauce Feeler
  • Global Moderator
  • King
  • *
  • Posts: 2350
  • Cookies: 345
  • Aliens do in fact wear hats.
    • View Profile
    • github
Re: Learning C above the Basics Level ???
« Reply #14 on: September 06, 2012, 10:25:07 pm »

Thanks I downloaded i will download it !!!


How to became a hacker instead of a ordinary programmer ...

Again, I will tell you The Art of Exploration in the ebooks section.
>>>import this
-----------------------------