Thread: C standard and performance of program

  1. #1
    Registered User
    Join Date
    Sep 2018
    Posts
    53

    C standard and performance of program

    Hello everybody!
    Does the performance of my program depend on C standard used in compilation in the GCC case?
    Thank you.

  2. #2
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    Well, if a newer version of the C standard introduces stuff that result in a performance improvement when used in your code, sure, if you do make use of it.
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  3. #3
    Registered User
    Join Date
    Sep 2018
    Posts
    53
    Quote Originally Posted by laserlight View Post
    Well, if a newer version of the C standard introduces stuff that result in a performance improvement when used in your code, sure, if you do make use of it.
    Perhaps C17 make overhead with new features but doesn't hence that C17 beat C89 with better compiler.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 1
    Last Post: 08-13-2016, 10:34 AM
  2. standard deviation program
    By vietkhang123 in forum C++ Programming
    Replies: 2
    Last Post: 09-29-2010, 04:01 PM
  3. Program without standard library?
    By Sly in forum C Programming
    Replies: 23
    Last Post: 11-29-2008, 06:47 PM
  4. Program to characterize performance of C functions?
    By stevespai in forum C Programming
    Replies: 5
    Last Post: 08-15-2006, 03:05 PM
  5. Program Performance
    By Hypercase in forum C++ Programming
    Replies: 2
    Last Post: 09-28-2004, 05:33 PM

Tags for this Thread