Feel free to send me an e-mail. If you do, be sure to include an email so that I can get back to you
Programming News
- CUDA, Supercomputing for the Masses: Part 19
- How Do OpenMP Compilers Work? Part 1
- Designers Call For New Languages
- Frankencamera Goes Public
- This Week's Multicore Reading List
- More Numerical Functions for C/C++ Developers
- A Programming Model for Heterogeneous x86 Platforms
- This Week's Developer Reading List
- Detecting Endian Issues with Static Analysis Tools
- Open Inventor 3D Graphics Toolkit Upgraded
- CUDA Certification Program Launched
- Parallel Counting Sort (Part 2)
- Vint Cerf Ponders Interplanetary Internet
- Patterson Probes Pitfalls Of Multicore Programming
- OpenMP: A Portable Solution for Threading
- Avoiding Pipeline Stalls in Hyper-Threaded Processors
- iPhone Programming For Windows
- A Highly Configurable Logging Framework In C++
- Prefer Using Active Objects Instead of Naked Threads
- C++ and format_iterator
- MeeGo 1.0 Available for Developers
- CUDA, Supercomputing for the Masses: Part 18
- Enforcing Correct Mutex Usage with Synchronized Values
- Vector Fabrics Intros Cloud-based Parallelization Tool
- McObject Updates eXtremeDB Database
Bug of the Day
1 #include <stdio.h>
2
3 /* greetings(pop,pct), where pop is the population of a planet and
4 where pct is the percentage of C/C++ programmers living on the
5 planet, will deliver the characteristic C/C++ greeting to that planet.
6 */
7
8 void greetings( double pop, double pct )
9 {
10 printf( "%y C/C++ programmers say '%s'.\n",
11 pop * pct/100, "Hello World" );
12 }
13
14 int main()
15 {
16 greetings( 6e+9, .02 );
17 return 0;
18 }
Something's going wrong with this program. The characteristic C/C++ greeting intended for the people of earth never gets delivered. What's going wrong?
Talks and Presentations