• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 23:19
CET 05:19
KST 13:19
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
TL.net Map Contest #21: Winners10Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
StarCraft, SC2, HotS, WC3, Returning to Blizzcon!41$5,000+ WardiTV 2025 Championship7[BSL21] RO32 Group Stage4Weekly Cups (Oct 26-Nov 2): Liquid, Clem, Solar win; LAN in Philly2Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win10
StarCraft 2
General
StarCraft, SC2, HotS, WC3, Returning to Blizzcon! Mech is the composition that needs teleportation t TL.net Map Contest #21: Winners Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win RotterdaM "Serral is the GOAT, and it's not close"
Tourneys
$5,000+ WardiTV 2025 Championship Constellation Cup - Main Event - Stellar Fest Sparkling Tuna Cup - Weekly Open Tournament Merivale 8 Open - LAN - Stellar Fest Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection Mutation # 495 Rest In Peace
Brood War
General
BW General Discussion [ASL20] Ask the mapmakers — Drop your questions [BSL21] RO32 Group Stage BGH Auto Balance -> http://bghmmr.eu/ SnOw's ASL S20 Finals Review
Tourneys
[BSL21] RO32 Group A - Saturday 21:00 CET [ASL20] Grand Finals [Megathread] Daily Proleagues [BSL21] RO32 Group B - Sunday 21:00 CET
Strategy
Current Meta PvZ map balance How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile Should offensive tower rushing be viable in RTS games? Dawn of War IV
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine YouTube Thread Dating: How's your luck?
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Learning my new SC2 hotkey…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Our Last Hope in th…
KrillinFromwales
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1064 users

So I'm coding in C n stuff1

Blogs > evanthebouncy!
Post a Reply
1 2 Next All
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
Last Edited: 2009-01-08 10:21:28
January 08 2009 02:30 GMT
#1
no question yet


Maybe I'll put more info:
1- I'll be compsci major
2- I'm not entirely new to programming
+ Show Spoiler [solved_ones] +

=======================
Question:
The while loop calls recursively on itself automatically right? That's pretty interesting. I remember in scheme I had to do
(define (function args)
(if (condition)
then (function (modifyer args)))
but I guess in C it's done internally and I don't have to call it again xD
================================
========================
I tried to name my program "program" so I did
# include <stdio.h>
program()
yadayada...

But when I tried to compile my code I get

evan@Evan-Box:~/Documents/tryingout$ cc temperature.c
/usr/lib/gcc/x86_64-linux-gnu/4.3.2/../../../../lib/crt1.o: In function `_start':
(.text+0x20): undefined reference to `main'
collect2: ld returned 1 exit status
evan@Evan-Box:~/Documents/tryingout$ ls
temperature.c temperature.c~ yada.c yada.c~


So does that mean I cannot name my program anything but main(args) or what?

=====================

So i'll be working a lot with C so I guess I'll just keep updating this blog. I'll put all solved problems in the solved section in a spoiler and post new ones as they arise.

**
Life is run, it is dance, it is fast, passionate and BAM!, you dance and sing and booze while you can for now is the time and time is mine. Smile and laugh when still can for now is the time and soon you die!
azndsh
Profile Blog Joined August 2006
United States4447 Posts
January 08 2009 02:39 GMT
#2
main() is special: it's where the program knows to start... otherwise it won't compile into an executable program
Mastermind
Profile Blog Joined April 2008
Canada7096 Posts
January 08 2009 02:42 GMT
#3
main(args) is not the name of a program. That is a function definition. Every program needs a main function. This is the place your program will begin execution at.
naonao
Profile Blog Joined November 2008
United States847 Posts
January 08 2009 03:01 GMT
#4
I have no experience with C, but some with C++, Java, and Flash. From what I have learned the program can be named anything but there needs to be a main method. What the program is called is usually what the name it is saved as is. In C++ you can have a Class that defines an object named whatever you want but somewhere in the program you still need a Main method that executes your code.
CommanderFluffy
Profile Joined June 2008
Taiwan1059 Posts
January 08 2009 03:04 GMT
#5
in C++, i learned
#includes
using namespace std;
int main() {

i'm guessing you are missing the C version of 'int main()' or something that is similar??
Pain is temporary, but glory is forever.
fonger
Profile Blog Joined March 2006
United Kingdom1218 Posts
Last Edited: 2009-01-08 03:09:40
January 08 2009 03:04 GMT
#6
edit: oh i see
InRaged
Profile Joined February 2007
1047 Posts
January 08 2009 04:01 GMT
#7
Why are you learning C? :3
There are much better languages for beginners ;P
FreeZEternal
Profile Joined January 2003
Korea (South)3396 Posts
Last Edited: 2009-01-08 04:30:29
January 08 2009 04:28 GMT
#8
C is great as a beginner language for CompSci. I believe that pointers, memory management, data structures, etc is a very important aspect to CompSci. Don't get me wrong, I'm a Java developer (program for living) but I did learn all the low level (C, assembly) stuff in the past. It's very important to have a strong base before going out there developing in high level languages and thinking that everything that's happening under the hood is magic lol.
Mastermind
Profile Blog Joined April 2008
Canada7096 Posts
Last Edited: 2009-01-08 04:33:12
January 08 2009 04:31 GMT
#9
On January 08 2009 13:28 FreeZEternal wrote:
C is great as a beginner language for CompSci. I believe that pointers, memory management, etc is a very important aspect to CompSci. Don't get me wrong, I'm a Java developer (program for living) but I did learn all the low level (C, assembly) stuff in the past. It's very important to have a strong base before going out there developing in high level languages and thinking that everything that's happening under the hood is magic lol.

C is a high level language. It does allow you do have great control over a lot of low level stuff, but it doesn't compare to assembly.
b3h47pte
Profile Blog Joined May 2007
United States1317 Posts
January 08 2009 04:39 GMT
#10
On January 08 2009 13:01 InRaged wrote:
Why are you learning C? :3
There are much better languages for beginners ;P


I started learning C++ when i was in 6th grade so I'm sure he will have no problem learning C.
yenta
Profile Blog Joined April 2006
Poland1142 Posts
January 08 2009 04:50 GMT
#11
Earlier I saw you having problems running compiled programs, this is due to rights management in linux. To run your compiled program, when in the directory, just type ./programname

Say you compiled program.c to program.out, typing
./program.out
will run your program, as opposed to type ~/long/ass/path/to/program

In linux, each directory has two special "directories" that are links. the first is "." (dot) and the second is ".." (dot dot).

. is used to refer to your current working directory
.. is used to refer to the directory above your current working directory

If you are in /home/evan/porno
"cd ." will move you to /home/evan/porno
"cd .." will move you to /home/evan

Anyways, the point - Programs that are not given rights to execute globaly (see chmod and rights management) have to be executed with a path before the name - ie "./" or "/long ass path"

Im horrible at explaining.
Trutacz Practice Discord - https://discord.gg/PWF7Pv
fusionsdf
Profile Blog Joined June 2006
Canada15390 Posts
Last Edited: 2009-01-08 05:08:08
January 08 2009 05:06 GMT
#12
also if your main function is an int type, you should probably end by returning an integer (I don't think it fails if you don't include it, but int type functions should return ints) you can (I think in C) have void main (), but my professor frowned on that (I think some compilers wont recognize it, but I don't really remember if that was why)

so

#include....
using namespace std;

int main () {

//code goes here

return 0;
}

kind of neat that you guys are using C, I thought everyone had switched over to using C++ and Java for compsci.

I started my assembly course today. pretty scared
SKT_Best: "I actually chose Protoss because it was so hard for me to defeat Protoss as a Terran. When I first started Brood War, my main race was Terran."
haduken
Profile Blog Joined April 2003
Australia8267 Posts
January 08 2009 05:32 GMT
#13
There are so many variants and standards of C so it's good to always code according to some sort of standard.
Rillanon.au
GHOSTCLAW
Profile Blog Joined February 2008
United States17042 Posts
January 08 2009 07:00 GMT
#14
On January 08 2009 13:39 b3h47pte wrote:
Show nested quote +
On January 08 2009 13:01 InRaged wrote:
Why are you learning C? :3
There are much better languages for beginners ;P


I started learning C++ when i was in 6th grade so I'm sure he will have no problem learning C.


C is really really good to learn depending on what you actually want to do. Embedded systems all use C, just because they tend to be speed dependent, and you're memory/processor constrained. C runs pretty fast (not like hand optimized coding "to the metal", but close enough ><;
PhotographerLiquipedia. Drop me a pm if you've got questions/need help.
InRaged
Profile Joined February 2007
1047 Posts
January 08 2009 07:25 GMT
#15
On January 08 2009 13:28 FreeZEternal wrote:
C is great as a beginner language for CompSci. I believe that pointers, memory management, data structures, etc is a very important aspect to CompSci. Don't get me wrong, I'm a Java developer (program for living) but I did learn all the low level (C, assembly) stuff in the past. It's very important to have a strong base before going out there developing in high level languages and thinking that everything that's happening under the hood is magic lol.

If that's for CompSci, then no questions. I thought maybe it's just for hobby or whatever ;P

On January 08 2009 11:30 evanthebouncy! wrote:
Question:
The while loop calls recursively on itself automatically right?

Well, yes and no :3
Practically, it rarely matters, but you shouldn't call it recursion, because it isn't at all.
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
January 08 2009 09:49 GMT
#16
On January 08 2009 16:25 InRaged wrote:
Show nested quote +
On January 08 2009 13:28 FreeZEternal wrote:
C is great as a beginner language for CompSci. I believe that pointers, memory management, data structures, etc is a very important aspect to CompSci. Don't get me wrong, I'm a Java developer (program for living) but I did learn all the low level (C, assembly) stuff in the past. It's very important to have a strong base before going out there developing in high level languages and thinking that everything that's happening under the hood is magic lol.

If that's for CompSci, then no questions. I thought maybe it's just for hobby or whatever ;P

Show nested quote +
On January 08 2009 11:30 evanthebouncy! wrote:
Question:
The while loop calls recursively on itself automatically right?

Well, yes and no :3
Practically, it rarely matters, but you shouldn't call it recursion, because it isn't at all.


Really? Suppose I want to make a while loop in scheme, that does what the while loop does in C, I would write it with recursion.
Life is run, it is dance, it is fast, passionate and BAM!, you dance and sing and booze while you can for now is the time and time is mine. Smile and laugh when still can for now is the time and soon you die!
fonger
Profile Blog Joined March 2006
United Kingdom1218 Posts
January 08 2009 10:12 GMT
#17
I don't know how it is in other languages, but recursion in C/C++ is a function calling itself repeatedly with modified parameters until it's finished doing what it has to do. This is a Bad Thing in most instances because each function call generates a new stack, but stacks aren't disposed of until a function has returned.

While loops are language constructs which can be much more accurately compared to iteration. Iteration is much cooler than recursion. If your comp sci professor tells you differently (as he actually did to a mate of mine) then he is a moron.

While loops just take an exit condition and execute the same code over and over until that condition is met.

I'm drunk, sorry.
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
January 08 2009 10:20 GMT
#18
On January 08 2009 19:12 fonger wrote:
I don't know how it is in other languages, but recursion in C/C++ is a function calling itself repeatedly with modified parameters until it's finished doing what it has to do. This is a Bad Thing in most instances because each function call generates a new stack, but stacks aren't disposed of until a function has returned.

While loops are language constructs which can be much more accurately compared to iteration. Iteration is much cooler than recursion. If your comp sci professor tells you differently (as he actually did to a mate of mine) then he is a moron.

While loops just take an exit condition and execute the same code over and over until that condition is met.

I'm drunk, sorry.


Haha iteration is probably the answer i"m looking for.
but iteration is not much cooler than recursion :p
Life is run, it is dance, it is fast, passionate and BAM!, you dance and sing and booze while you can for now is the time and time is mine. Smile and laugh when still can for now is the time and soon you die!
fonger
Profile Blog Joined March 2006
United Kingdom1218 Posts
January 08 2009 10:25 GMT
#19
you should get a job teaching comp sci then

there seems to be a lot of demand for you idiots :D
Bockit
Profile Blog Joined November 2004
Sydney2287 Posts
January 08 2009 10:56 GMT
#20
My professor would say that recursion tends to be the more 'elegant' solution, but is never better than iteration.
Their are four errors in this sentance.
1 2 Next All
Please log in or register to reply.
Live Events Refresh
Replay Cast
23:00
PiGosaur Cup #55
Liquipedia
BSL 21
20:00
ProLeague - RO32 Group A
Gosudark vs Kyrie
Gypsy vs OyAji
UltrA vs Radley
Dandy vs Ptak
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RuFF_SC2 188
StarCraft: Brood War
Britney 18493
Sea 5010
PianO 299
NaDa 86
Noble 56
Sharp 36
Dota 2
monkeys_forever499
NeuroSwarm93
LuMiX2
League of Legends
JimRising 770
Counter-Strike
Stewie2K152
Heroes of the Storm
Khaldor124
Other Games
tarik_tv11969
summit1g8943
WinterStarcraft313
ViBE97
goatrope43
Organizations
Other Games
gamesdonequick612
Counter-Strike
PGL127
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• Hupsaiya 95
• davetesta13
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• masondota21484
Upcoming Events
Sparkling Tuna Cup
5h 41m
WardiTV Korean Royale
7h 41m
LAN Event
10h 41m
ByuN vs Zoun
TBD vs TriGGeR
Clem vs TBD
IPSL
13h 41m
JDConan vs WIZARD
WolFix vs Cross
BSL 21
15h 41m
spx vs rasowy
HBO vs KameZerg
Cross vs Razz
dxtr13 vs ZZZero
Replay Cast
1d 4h
Wardi Open
1d 7h
WardiTV Korean Royale
2 days
Replay Cast
3 days
Kung Fu Cup
3 days
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
[ Show More ]
Tenacious Turtle Tussle
3 days
The PondCast
4 days
RSL Revival
4 days
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
4 days
WardiTV Korean Royale
4 days
RSL Revival
5 days
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
5 days
CranKy Ducklings
6 days
RSL Revival
6 days
herO vs Gerald
ByuN vs SHIN
Kung Fu Cup
6 days
BSL 21
6 days
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Liquipedia Results

Completed

BSL 21 Points
SC4ALL: StarCraft II
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
Stellar Fest: Constellation Cup
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual

Upcoming

SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
META Madness #9
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.