You are viewing our Forum Archives. To view or take place in current topics click here.
How Do you Make Programs
Posted:
How Do you Make ProgramsPosted:
Status: Offline
Joined: Nov 07, 201113Year Member
Posts: 189
Reputation Power: 10
Status: Offline
Joined: Nov 07, 201113Year Member
Posts: 189
Reputation Power: 10
Whats Up TTG Ive Been Making Graphics For Some Time Now But I always Wanted to Know How To Make Programs And stuff i know nothing about it like What Programs Do You need and stuff to do it and how do you do it
#2. Posted:
Status: Offline
Joined: Nov 14, 201014Year Member
Posts: 1,031
Reputation Power: 61
Status: Offline
Joined: Nov 14, 201014Year Member
Posts: 1,031
Reputation Power: 61
ReLyTemptatioN wrote Whats Up TTG Ive Been Making Graphics For Some Time Now But I always Wanted to Know How To Make Programs And stuff i know nothing about it like What Programs Do You need and stuff to do it and how do you do it
You need to learn a language. I would start off in C++ or C#.
If you're looking for a challenge try Java. It's not hard to learn there's just a lot.
If you chose Java Watch these tutorials on Youtube from thenewboston.
They Help a lot.
[ Register or Signin to view external links. ]
Some things you need.
Creativity
and
Patience.
- 1useful
- 0not useful
#3. Posted:
Status: Offline
Joined: Nov 07, 201113Year Member
Posts: 189
Reputation Power: 10
Status: Offline
Joined: Nov 07, 201113Year Member
Posts: 189
Reputation Power: 10
AmishTech wroteReLyTemptatioN wrote Whats Up TTG Ive Been Making Graphics For Some Time Now But I always Wanted to Know How To Make Programs And stuff i know nothing about it like What Programs Do You need and stuff to do it and how do you do it
You need to learn a language. I would start off in C++ or C#.
If you're looking for a challenge try Java. It's not hard to learn there's just a lot.
If you chose Java Watch these tutorials on Youtube from thenewboston.
They Help a lot.
[ Register or Signin to view external links. ]
Thanks Bro Its Just I really wanna Learn how to do this
Some things you need.
Creativity
and
Patience.
- 0useful
- 0not useful
#4. Posted:
Status: Offline
Joined: Jan 30, 201113Year Member
Posts: 638
Reputation Power: 25
#5. Posted:
Status: Offline
Joined: Jul 07, 200915Year Member
Posts: 2,596
Reputation Power: 205
You can make a program in many languages, but first you need to learn them.
Depending on how you like to learn either use, books/e-books or youtube.
Plus there's many tutorials out there.
Depending on how you like to learn either use, books/e-books or youtube.
Plus there's many tutorials out there.
- 0useful
- 0not useful
#6. Posted:
Status: Offline
Joined: Feb 05, 201212Year Member
Posts: 804
Reputation Power: 35
i wanna learn aswell what are languages
- 0useful
- 0not useful
#7. Posted:
Status: Offline
Joined: Oct 31, 201014Year Member
Posts: 2,084
Reputation Power: 95
Status: Offline
Joined: Oct 31, 201014Year Member
Posts: 2,084
Reputation Power: 95
Fizkey wrote i wanna learn aswell what are languages
My definition
Languages, in a computer term (Not what you speak), the way 'code' is organized in a program, the way the computer identifies regular text from computer code. For instance, if you could make program's by simply typing in something like this:
Open a random file in the computer
read the file back to me
Then the computer would always take anything you type in, and think that it's code. Just like this reply I'm typing, it would think it's the computer language it's supposed to read, but it's not.
Here is an example of the language C
for(i=0, i<5, i++)
(If that's right, I've forgotten even the basics of C), That will make an Integer called i, and the i<5 part will tell the computer to do something as long as i is less than 5, the i++ part is what the computer will execute while i is less than 5, i++ (in C Coding) will increase the value = i by 1. And this will loop/continue adding until i is equal to 5.
If you need more help, just Google it, and go to Wikipedia.
- 0useful
- 0not useful
#8. Posted:
Status: Offline
Joined: Aug 14, 200915Year Member
Posts: 1,291
Reputation Power: 65
Status: Offline
Joined: Aug 14, 200915Year Member
Posts: 1,291
Reputation Power: 65
whatsamod wroteFizkey wrote i wanna learn aswell what are languages
My definition
Languages, in a computer term (Not what you speak), the way 'code' is organized in a program, the way the computer identifies regular text from computer code. For instance, if you could make program's by simply typing in something like this:
Open a random file in the computer
read the file back to me
Then the computer would always take anything you type in, and think that it's code. Just like this reply I'm typing, it would think it's the computer language it's supposed to read, but it's not.
Here is an example of the language C
for(i=0, i<5, i++)
(If that's right, I've forgotten even the basics of C), That will make an Integer called i, and the i<5 part will tell the computer to do something as long as i is less than 5, the i++ part is what the computer will execute while i is less than 5, i++ (in C Coding) will increase the value = i by 1. And this will loop/continue adding until i is equal to 5.
If you need more help, just Google it, and go to Wikipedia.
I know that you probably know this, but computers don't actually understand C or Java, they only understand assembly, where each instruction is made up of 32 or 64 bits depending on your processor. The code that you write is compiled into an executable, so that for loop that you wrote is translated into assembly so that your computer can understand it. Programming languages are just a medium that we use to communicate with computers.
- 0useful
- 0not useful
#9. Posted:
Status: Offline
Joined: May 22, 201212Year Member
Posts: 14
Reputation Power: 0
There is many ways you can make a program.
Start out with C++ in Visual Basic.
Read some tutorials on internet, or watch some videos on google.
Boom, your program is made.
Start out with C++ in Visual Basic.
Read some tutorials on internet, or watch some videos on google.
Boom, your program is made.
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.