Thread: Design patterns in C

  1. #1
    Registered User
    Join Date
    Mar 2009
    Location
    Dnipropetrovsk, Ukraine
    Posts
    25

    Design patterns in C

    Hi,
    I was wondering if there was such a thing as design patterns in C as there is in some object-oriented languages.
    If it is available in C, I'd appreciate someone referring me to some web-based resources or providing me with any other related information please.
    Thanks.

  2. #2
    Registered User
    Join Date
    Apr 2009
    Posts
    7
    As far as I know, there is no such thing as design patterns in C.
    From my understanding design patterns are helpful to provide solutions to design problems.
    Most of the design issues fit into one of the patterns and you can simply follow the pattern related to your design issue and its guaranteed to provide a better solution.
    If you are interested in learning design patterns, here's the link through google, that discusses it:
    Tutorials about Patterns
    Certainly you could implement the solutions in C, but I think the solutions fits well into object oriented paradigm, something like C++, C#.

    Hope this helps,

    Best,
    -R.

  3. #3
    Registered User
    Join Date
    Mar 2009
    Location
    Dnipropetrovsk, Ukraine
    Posts
    25
    Thanks a lot. I'll have a look at that.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. which design is better to wrap another class instance
    By George2 in forum C++ Programming
    Replies: 7
    Last Post: 04-13-2008, 12:27 AM
  2. Design Books
    By Wraithan in forum A Brief History of Cprogramming.com
    Replies: 28
    Last Post: 09-12-2007, 10:51 PM
  3. Implementing Inheritence into your design
    By bobthebullet990 in forum C++ Programming
    Replies: 6
    Last Post: 08-05-2006, 04:40 PM
  4. Cprog tutorial: Design Patterns
    By maes in forum C++ Programming
    Replies: 7
    Last Post: 10-11-2004, 01:41 AM