A new C standard is on the way. Here's what to expect in C11
Thirteen years after the ratification of the C99 standard, a new C standard is now available. Danny Kalev, a former member of the C++... more »
Tweet 2 Comments Save Tags: c-and-cpp
World Of Programming [Infographic]
An infographic of the major contributors to the field of programming.
Tweet 1 Comments Save Tags: c-and-cpp , other languages , trends , web design
Programing Languages 101 [comic]
If these languages were turned in to a professor as essays, here's what he'd say to each.
Tweet 0 Comments Save Tags: c-and-cpp , humor , java , other languages
Divide a number by 3 without using *, /, +, -, % operators
This question has been asked in an Oracle interview.
Tweet 0 Comments Save Tags: c-and-cpp , how-to , reviews , trends
6 Free C++ Graphics and Game Libraries
C++ is a multi paradigm, free form complied, general purpose and thus a very powerful language used basically forthe purpose of... more »
Tweet 0 Comments Save Tags: c-and-cpp , tools
Objects and Threads in C++ and Qt (Part 1)
When I first started working on a team using Qt (in a C++ environment), I would hear co-workers talk about “objects being on threads”,... more »
Tweet 0 Comments Save Tags: c-and-cpp , reviews
12 Interesting C Interview Questions and Answers
In this article, we will discuss some interesting problems on C language that can help students to brush up their C programming skills... more »
Tweet 2 Comments Save Tags: c-and-cpp , how-to , opinion , tools
Understanding TCP/IP Network Stack & Writing Network Apps
A very in-depth article about TCP/IP and networking in general. The author, a senior engineer at NHN Corporation, explains how data flows... more »
Tweet 5 Comments Save Tags: c-and-cpp , hardware , how-to , research
Linux Game Programming Tutorial 1: Introduction/First SDL
The Games for Linux movement hasn't actually been invented yet after these years, it all starts with you~! I've stumbled around this... more »
Tweet 0 Comments Save Tags: c-and-cpp , frameworks , how-to , unix-linux
The Technical Debt Report (October, 2012) is available
This is the third report based on TechDebt.org‘s data. It presents the main evolutions of the audit database and the various metrics of... more »
Tweet 1 Comments Save Tags: c-and-cpp , java , javascript , php
It’s Faster Because It’s C
I was recently drawn into another discussion about a claim that project Foo was faster than project Bar because Foo is written in C (or... more »
Tweet 1 Comments Save Tags: c-and-cpp
C# = the Past, the Present and the Future
Ever since C# first appeared back in 2000 a lot has happened every year. As we’ve been introduced to more and more language features,... more »
Tweet 0 Comments Save Tags: c-and-cpp , microsoft , opinion
The Biggest Changes in C++11 (and Why You Should Care)
An oldie, but a goodie, from our blog archives. This post talks about the significant changes in C++ and why Bjarne Stroustrup, the... more »
Tweet 0 Comments Save Tags: c-and-cpp
Rapid Prototyping with Xcode Storyboard
Recently I wanted to rapid prototype a working application and show it to my team to understand the user flow. The options I had to do... more »
Tweet 0 Comments Save Tags: c-and-cpp , frameworks , methodology , tools
GNU Make in Detail for Beginners
Large projects can contain thousands of lines of code, distributed in multiple source files, written by many developers and arranged in... more »
Tweet 0 Comments Save Tags: c-and-cpp , how-to , unix-linux
Why C++ Is Not “Back”
Now don’t get me wrong. C++11 is fantastic! I am in just about 100% agreement with all of the changes that have been made. There is one... more »
Tweet 4 Comments Save Tags: c-and-cpp
I’m writing my own OS
For starters, it’s more about running your own code directly on CPU once the PC is turned on, without any underlying OS than writing OS... more »
Tweet 0 Comments Save Tags: c-and-cpp , hardware , research
How to call a C program from Java
Nice step by step easy tutorial on calling native code from java.
Tweet 0 Comments Save Tags: c-and-cpp , java
Common Logical Questions Asked in a Technical Interview
Well, if you are going for a technical interview in any programming language, in any stream, irrespective of your expertise and... more »
Tweet 0 Comments Save Tags: c-and-cpp , humor , methodology , opinion
Writing Lock-Free Code: A Corrected Queue
Herb continues his exploration of lock-free code--this time focusing on creating a lock-free queue.
Tweet 0 Comments Save Tags: c-and-cpp , how-to , tools
Using constexpr to Improve Security, Performance and Encapsulation in C++
constexpr is a new C++11 keyword that rids you of the need to create macros and hardcoded literals. It also guarantees, under certain... more »
Tweet 0 Comments Save Tags: c-and-cpp , how-to
DEX Graph Database 4.7 *NEW RELEASE goes High Availability*
This milestone is a big step into the High Availability. With the newest version you will be able to construct a replicated system with... more »
Tweet 0 Comments Save Tags: .net , c-and-cpp , database , java
c++ - Why is processing a sorted array faster than an unsorted array
Here is a piece of code that shows some very peculiar performance. For some strange reason, sorting the data miraculously speeds up the... more »
Tweet 0 Comments Save Tags: c-and-cpp , methodology , opinion , tools
32 OpenMP Traps For C++ Developers
Since multi-core systems are spreading fast, the problem of parallel programming becomes more and more urgent. However, even the majority... more »
Tweet 0 Comments Save Tags: c-and-cpp
Use C++11 Inheritance Control Keywords to Prevent Inconsistencies in Class Hierarchies
For more than 30 years, C++ got along without inheritance control keywords. It wasn’t easy, to say the least. Disabling further... more »
Tweet 0 Comments Save Tags: c-and-cpp