| About C/C++ |
| Put this feed on your website |
| Description: |
C/C++ |
| Format: |
RSS 1.0 |
| Url: |
http://z.about.com/6/g/cplus/b/index.rdf |
| |
| Latest headlines |
About C/C++
|
Book Review : Jeffrey Richter's CLR via C#
Thu, 17 May 2012 01:23:00 -0500
I'd seen this book around and had the 2nd edition and came across a copy of the 3rd edition at work and borrowed it for this review.
It's not a...
|
Wintellect Power Collections for .NET
Mon, 14 May 2012 15:47:00 -0500
Although it's almost five years old, this collection of collection classes is still very handy to have and compliments that which comes with C# 4.0. Wintellect is a...
|
Friday Puzzle and Empire AI Design Doc
Sun, 13 May 2012 08:47:00 -0500
I asked if the C# was valid (it was) and what the values of a and b would be. It was valid C# with a = 1, b = 2....
|
Programming Puzzle + Mud Server
Sat, 12 May 2012 17:59:00 -0500
The Thursday puzzle was C# as correctly guessed. It's a little known fact that the @character is valid in an identifier and this allows lines like class @class etc.
You...
|
Programming puzzle Is this C# Valid?
Fri, 11 May 2012 17:19:00 -0500
using System;
class Test
{
static int a = b + 1;
static int b = a + 1;
static void Main() {
Console.WriteLine("a = {0}, b = {1}", a, b);
}
}
Without compiling it, can you say (a) if it will compile and (b) if it does, what values will it output? Answer on Sunday...
|
Programming Puzzle - What Language Is this?
Thu, 10 May 2012 17:04:00 -0500
using System;
namespace ke
{
class @class
{
public static void @static(bool @bool)
{
Console.WriteLine(@bool ? "true" : "false");
}
}
class Program
{
static void Main(string[] args)
{
@class.@static(true);
}
}
}
Answer on Saturday. Oh and it is valid. It will most certainly compile and run on .NET!
...
|
Native Client Now Supports Mono
Wed, 09 May 2012 16:48:00 -0500
The best way to track this is to subscribe to the Native Client Discuss on Google Groups. Elijah Taylor of Google posted an update today that Mono for Native Client...
|
The Development of C - History
Mon, 07 May 2012 15:49:00 -0500
If you've ever wondered how the C language came into being, wonder no more. A paper by Dennis M. Ritchie, published nearly twenty years ago explains the history in quite...
|
A Data to Source Code Generator in C#
Sun, 06 May 2012 16:51:00 -0500
Here's another small C# project I've developed with source code. As part of the Asteroids tutorial, I'm developing the high accuracy collision detection. (Collision detection.).
That generated a lot of...
|
Microsoft's Windows Development Plans
Thu, 03 May 2012 17:18:00 -0500
Unless you've been living under a rock, you'll know that Windows 8 isn't that far away (months I think), and there are betas available. Plus you can download Visual...
|