₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,105 members, 8,420,360 topics. Date: Thursday, 04 June 2026 at 05:27 PM

Toggle theme

Ogim's Posts

Nairaland ForumOgim's ProfileOgim's Posts

1 2 3 (of 3 pages)

ProgrammingRe: Gamers Virtual Machine by Ogim(op): 7:43am On Feb 13, 2011
-
ProgrammingRe: Gamers Virtual Machine by Ogim: 7:38am On Feb 13, 2011
ProgrammingGamers Virtual Machine by Ogim(op): 2:44pm On Feb 12, 2011
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.
Tech JobsRe: Free Programming Ebook On Php, Python, Java, Actionscript, C, C++, Javascript by Ogim: 4:29pm On Feb 02, 2011
programming e-books websites

www.computer-books.us
www.scribd.com
ProgrammingRe: Web Applications Are Not The Way Out by Ogim: 4:13pm On Feb 02, 2011
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.
ProgrammingRe: Is C# Better Than C/C++? by Ogim: 5:20pm On Jan 12, 2010
Joefazee
C is not the mother of all language.pascal was not created from c. Assembly programming language is the mother of all language.
ProgrammingRe: Is C# Better Than C/C++? by Ogim: 5:03pm On Jan 12, 2010
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.
ProgrammingRe: I Need Help With Becoming A Programmer by Ogim: 4:35pm On Jan 12, 2010
Try this site-
http://cslibrary.stanford.edu/
The books on the site helped me to understand c programming language better.
ProgrammingRe: Opengl by Ogim: 4:25pm On Jan 04, 2010
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
ProgrammingRe: Urgent! Plz Help - C Programming Problem by Ogim: 9:38am On Dec 30, 2009
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/
Tech JobsRe: Electrical/electronics Ebooks Needed by Ogim: 6:16pm On Dec 26, 2009
Go to-
www.scribd.com
and search for circuit design ebooks or go to-
www.computer-books.us
ProgrammingRe: Urgent! Plz Help - C Programming Problem by Ogim: 1:41pm On Dec 21, 2009
#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();
}
ProgrammingRe: Urgent! Plz Help - C Programming Problem by Ogim: 1:39pm On Dec 21, 2009
#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();
}

1 2 3 (of 3 pages)