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









Please type what is in the image or answer the question.


Programming News


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

Introduction to Billboarding Image Degenerate Triangles Image Design Patterns for Games Image Introductory OpenGL Image