Jump to content

How many C programmers are here?

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
22 replies to this topic

#1
twitch

twitch

    Newbie

  • Members
  • PipPip
  • 10 posts
I was just curious of how C programmers we have here?

#2
CygnetGames

CygnetGames

    Programmer

  • Members
  • PipPipPipPip
  • 119 posts
I've used C for a few small projects, but nothing major.

#3
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Same here. I prefer C++.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#4
Dave

Dave

    Newbie

  • Members
  • Pip
  • 4 posts
I'm learning C right now. It's tricky, but I like it. I like that it's so low-level, so you always feel close to the hardware. I also like the freedom it gives you to just do your own thing, even if it's stupid. I find that you learn a lot that way. I also like that it's a picky, exacting language where every detail has to be explicit. I think I must be some sort of glutton for punishment. :|

#5
TkTech

TkTech

    The Crazy One

  • Moderators
  • 1,396 posts
Try assembler. Easy: yes. Explicit: yes. Unbelievably long and messy coding: Yeap.

#6
twitch

twitch

    Newbie

  • Members
  • PipPip
  • 10 posts
How about Malbolge Malbolge - Wikipedia, the free encyclopedia

lol

#7
v0id

v0id

    Retired

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,936 posts
My favorites languages are C and C++, so yes, I'll say I'm a C programmer.

#8
Ronin

Ronin

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 309 posts
C and C++ here. I know it but not well.

#9
niskin

niskin

    Newbie

  • Members
  • Pip
  • 7 posts
My preferred languages are C and C++ so I would also say I'm a C programmer.

#10
Lop

Lop

    Speaks fluent binary

  • Members
  • PipPipPipPipPipPipPipPip
  • 1,172 posts
Isn't it true if you know C++ you know C?

#11
niskin

niskin

    Newbie

  • Members
  • Pip
  • 7 posts
No I don't believe that it is. The methods in C can often be very different to those in C++. However, if you do a lot of what I call hybrid programming (programming using both C and C++ header files) then you are likely to know both quite well.

#12
v0id

v0id

    Retired

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,936 posts

"Lop" said:

Isn't it true if you know C++ you know C?
I would say it depends, and not directly no, as niskin.
When you know C++, you almost certainly know C as well. You just have to remember that C is sometimes different from C++, and you can also do some things in C, that you can't in C++. ATM I can't come up with any examples about what you can do in C, but not C++ - but there are many things, mainly in memory management. Some quick searches using your favorite search engine, would probably come up with something.