Archive
Posts Tagged ‘c’
some C fun
Monday, 3 December 2007
Leave a comment
int main()
{
char charptr[30], ch[30];
scanf("%s %*s %s", charptr, ch);
printf("%s %s", charptr, ch);
scanf("%3c", ch);
printf("%s", ch);
system("PAUSE");
}
can’t test cin.scan in windows (as GNU extension is not ported in g++/win32)
Categories: Programming
c, printf
A gentle introduction to Tao.OpenGl using SimpleOpenGlControl (OpenGL with C#)
Sunday, 7 January 2007
5 comments
An introduction tutorial I did about Tao.OpenGL and C# Builder Personal Edition.
Read it here
Categories: My Articles
c, csharp, opengl, tutorial