Ogim's Posts
Nairaland Forum › Ogim's Profile › Ogim's Posts
- |
Web-www.gamersvm |
Gamers is a virtual machine program created by me, for game design. At first i wanted to make c or pascal Gamers programming language, but c and pascal has too many functions and statement that will not be required and it would have taken me a long time to finish this virtual machine, so i decided to create my own programming language and make it Gamers programming language. Gamers programming language is a simple language that any one can learn, though it will be a lot easier if you already have some experience in some other programming language, since Gamers programming language is a new programming language. I have remove bugs from the programming language,but creating a programming language doe not mean i know all the errors in the program, hopefully the more people use Gamers and alert me of the errors they encounter, i will be able to fix more error until they are no more errors in the program. They are two part in Gamers (1) the virtual machine that interpret the codes and execute the games for users to play and (2) the compiler. The virtual machine,Gamers, is freeware and the current version is 1.5. I have release two compilers for users, one is freeware (Gamers Compiler Free Edition), while the other (Gamers Compiler Pro), you must buy a key to use it. The Difference between the two Compiler is They will be no updates or any other version for the free edition. The free version does not support threads. Only one sound file is allowed in the free version. Only one text file is allowed in the free version. Only .bmp file can be use in Gamers Compiler free edition. They will be updates and other versions for the pro version. Pro version supports threads. You can use any number of sound file in pro version. You can use any number of text file in pro version. Game designers can use .png,.jpg and .bmp image files in Gamers Compiler pro. visit- www. gamersvm .co.cc for more info and to download this software. |
A programming language is only as powerful as the imagination of the programmer. So it doesn't matter the programming language you use or weather it is web or desktop design, the important thing is the function of what you design. |
Joefazee C is not the mother of all language.pascal was not created from c. Assembly programming language is the mother of all language. |
To me the three programming language are thesame,since they all run under thesame virtual mechine and uses thesame class but at the end,the more you use and read about a programming lang the more things you'll be able to do with the programming language. |
Try this site- http://cslibrary.stanford.edu/ The books on the site helped me to understand c programming language better. |
Go to www.opengl.org/resources/liberies it may have what you're looking for. People that learn opengl at some point will also want to learn game programming. For game programming tutorials go to www.lazyfoo.net/SDL_tutorials/index.php |
Kernighan & Ritchie also known as K & R where the once who design the original c language. If you realy want to learn c programming start with the free books at http://cslibrary.stanford.edu/ |
#include <stdio.h> |
#include <stdio.h> #include <string.h> int _getch(void); Void main() { char str[80]; int len; scanf("%s",str); len=strlen(str); int i,j; char temp; for (i=0,j=len-1;i<j;i++,j--) { temp=str[i]; str[i]=str[j]; str[j]=temp; } printf(str); _getch(); } |