add c language Visual Studio example

This commit is contained in:
Juraj Michalek
2014-04-10 19:53:13 +02:00
parent 1f87dd7c8f
commit faa16c51e7
3 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
printf("Making the MFPs think\n");
return 0;
}