C/C++
cpro0302.txt
Associated article: Mar02: C Programming
Tags: C/C++
Published source code examples accompanying the article by Al Stevens in which continues development of classes that implement audio waveform playback and recording on the Win32 platform. Also see CPRO0302.ZIP.
C Programming
by Al Stevens
Example 1:
#include <cstdio>
int main()
{
printf("nhello, dolly");
return 0;
}
Example 2:
#include <cstdio>
int main()
{
std::printf("nhello, dolly");
return 0;
}
Example 3:
using System;
class Class1
{
static void Main()
{
...


