accountname wrote:Jungletoe wrote:accountname wrote:C++ my fucking arse.
Jungletoe comes from "TouchofDeathforums". It's a forum about a free to use 2d VISUAL BASIC 6 engine. I also noticed how a lot of people there like to brag about their "C++" game made with the VB6 engine, Projeaar for example.
#include <iostream>
int main()
{
std::cout << "It's written in C++." << std::endl;
return 0;
}
I seriously hope that was intented as a joke.
System.out.println("I am le master java coder XDDD");
Java code?
System.out.println(); is mostly utilized in object oriented languages so I dunno if C++ would have this in it (cuz i never touched that before).
- Code: Select all
#include <stdio.h>
#include <stdlib.h>
int *arrays;
int main(void)
{
int i;
arrays = (int *)calloc(1,10 * sizeof(int));
for (i = 0; i <= 9; i++)
{
arrays[i] = i +1;
printf("this is number %d\n", arrays[i]);
}
}
Guess what? This is from learning only the basics of C, normally for beginners it'll take a month to learn via class, but people can learn it on the net and grasp it within a day if need be.
I already had java experience though so reading codes weren't a issue in VS2012, it's just learning new rules so I guess the re-learning curve is easier.
I'm pretty sure the tougher codes are waaaaaay out there somewhere.
So far I only touched VB6 during computer science class in highschool, other than that, only a very few languages like Java and C that I've seen and used so far.