So today i took the time too look at 'c' and i kinda liked it a lot. It's almost the same as C++ just easier. Which i believe is perfect. Later on i would move on to either C++ or C#. Becuase off I want to continue with game creation.
But I'm currently watching a series on youtube for 'C' which i think everyone should watch. As it has been though to find a nice series. So thought i would share it. And ask what you think about my interest in continue after C and soforth.
What I'm learning from is: http://www.youtube.c...170B6E7DD6D8810
Currently on video 18.
EDIT: Little thing i just made:
#include <stdio.h>
#include <stdlib.h>
int main()
{
int nums[] = { 1,2,3,4,5 };
int reversed[5];
int i;
for (i = 0; i < 5; i++)
{
reversed[4 - i] = nums[i];
}
for (i = 0; i <5; i++)
{
printf ("%i", reversed[i]);
}
return 0;
}
This post has been edited by Miikalsen: 01 September 2012 - 08:03 AM

New Topic/Question
Reply




MultiQuote






|