• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 18:07
CET 00:07
KST 08:07
  • 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: Winners11Intel 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
Weekly Cups (Nov 3-9): Clem Conquers in Canada3SC: Evo Complete - Ranked Ladder OPEN ALPHA8StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45$5,000+ WardiTV 2025 Championship7[BSL21] RO32 Group Stage4
StarCraft 2
General
Mech is the composition that needs teleportation t Weekly Cups (Nov 3-9): Clem Conquers in Canada Craziest Micro Moments Of All Time? SC: Evo Complete - Ranked Ladder OPEN ALPHA RotterdaM "Serral is the GOAT, and it's not close"
Tourneys
Constellation Cup - Main Event - Stellar Fest Tenacious Turtle Tussle Sparkling Tuna Cup - Weekly Open Tournament $5,000+ WardiTV 2025 Championship Merivale 8 Open - LAN - Stellar Fest
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection
Brood War
General
FlaSh on: Biggest Problem With SnOw's Playstyle BW General Discussion BGH Auto Balance -> http://bghmmr.eu/ [ASL20] Ask the mapmakers — Drop your questions Where's CardinalAllin/Jukado the mapmaker?
Tourneys
[BSL21] RO32 Group D - Sunday 21:00 CET [BSL21] RO32 Group C - Saturday 21:00 CET [ASL20] Grand Finals [Megathread] Daily Proleagues
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 Should offensive tower rushing be viable in RTS games? Path of Exile 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 Canadian Politics Mega-thread The Games Industry And ATVI
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
Formula 1 Discussion 2024 - 2026 Football Thread 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
Blogs
Dyadica Gospel – a Pulp No…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1368 users

So I'm coding in C n stuff1

Blogs > evanthebouncy!
Post a Reply
Normal
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.
BottleAbuser
Profile Blog Joined December 2007
Korea (South)1888 Posts
Last Edited: 2009-01-08 11:44:27
January 08 2009 11:43 GMT
#21
I got my own questions.

Why does main method traditionally return an int? What the bloody hell is it good for?

Aren't there algorithms that make use of recursion, which would be a big pain to turn into iterative implementations using stacks? I suppose the asymptotal speed and space would be the same, if that's what Bockit's professor was saying.

Oh, and fonger, most compilers these days automatically optimize tail and head recursion so that they don't uselessly fill up your stack.
Compilers are like boyfriends, you miss a period and they go crazy on you.
HeadBangaa
Profile Blog Joined July 2004
United States6512 Posts
January 08 2009 12:34 GMT
#22
On January 08 2009 19:56 Bockit wrote:
My professor would say that recursion tends to be the more 'elegant' solution, but is never better than iteration.

Tail recursion is just fine.
People who fail to distinguish Socratic Method from malicious trolling are sadly stupid and not worth a response.
Scorch
Profile Blog Joined March 2008
Austria3371 Posts
January 08 2009 12:48 GMT
#23
On January 08 2009 20:43 BottleAbuser wrote:
Why does main method traditionally return an int? What the bloody hell is it good for?

I'm not much of a C programmer, but I think it's being used for error handling. If everything works, you normally return 0. If not, you can return an error code to see what went wrong.
MasterOfChaos
Profile Blog Joined April 2007
Germany2896 Posts
January 08 2009 12:50 GMT
#24
Why does main method traditionally return an int?
-Because programs return an int(I'm not sure about the range. But I think 16bit)
This is usually only relevant for console programs, and mostly used to signal an error back to the calling program/script.

In general you will use mostly iteration in c, but recursion where necessary.
LiquipediaOne eye to kill. Two eyes to live.
Darth_Ihsahn
Profile Joined June 2007
Mexico138 Posts
Last Edited: 2009-01-08 17:45:52
January 08 2009 17:42 GMT
#25
On January 08 2009 16:00 GHOSTCLAW wrote:
Show nested quote +
On January 08 2009 13:39 b3h47pte wrote:
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 ><;


I work writing code for microcontrollers and this is absolutely right. C has a good balance between speed/resources and portability.

To expand a bit on what MasterOfChaos said, you usually need a return value for your program (main method) when you execute it as a part of a batch process and you need to know whether it succeeded or not.

This is how IDEs work under the hood. They call the compiler for each source file in the project, if all succeeded, they call the linker, if there is no error, a "build successful" message is displayed.
What does not kill you makes you stronger.
Mastermind
Profile Blog Joined April 2008
Canada7096 Posts
January 08 2009 19:53 GMT
#26
On January 08 2009 21:34 HeadBangaa wrote:
Show nested quote +
On January 08 2009 19:56 Bockit wrote:
My professor would say that recursion tends to be the more 'elegant' solution, but is never better than iteration.

Tail recursion is just fine.

yes, as long as the language you are programming is uses tail call optimization. Not all of them do.
Normal
Please log in or register to reply.
Live Events Refresh
Replay Cast
23:00
PiGosaur Cup #55
CranKy Ducklings30
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
White-Ra 265
ProTech119
JuggernautJason117
SpeCial 91
StarCraft: Brood War
Calm 3580
Shuttle 674
Artosis 219
Dota 2
Dendi972
Counter-Strike
Foxcn178
Super Smash Bros
hungrybox721
AZ_Axe54
PPMD22
Other Games
summit1g8363
Grubby3116
shahzam489
Liquid`Hasu241
Skadoodle151
Maynarde119
ViBE80
C9.Mang079
fpsfer 3
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 21 non-featured ]
StarCraft 2
• RyuSc2 78
• Hupsaiya 71
• musti20045 27
• Adnapsc2 11
• Kozan
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• IndyKCrew
StarCraft: Brood War
• blackmanpl 45
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21060
• Ler45
League of Legends
• imaqtpie3071
• TFBlade953
Other Games
• WagamamaTV388
• Shiphtur277
Upcoming Events
Replay Cast
9h 53m
OSC
12h 23m
Kung Fu Cup
12h 53m
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
23h 53m
The PondCast
1d 10h
RSL Revival
1d 10h
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
1d 12h
WardiTV Korean Royale
1d 12h
PiGosaur Monday
2 days
RSL Revival
2 days
Classic vs Creator
Cure vs TriGGeR
[ Show More ]
Kung Fu Cup
2 days
CranKy Ducklings
3 days
RSL Revival
3 days
herO vs Gerald
ByuN vs SHIN
Kung Fu Cup
3 days
IPSL
3 days
ZZZero vs rasowy
Napoleon vs KameZerg
BSL 21
3 days
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Sparkling Tuna Cup
4 days
RSL Revival
4 days
Reynor vs sOs
Maru vs Ryung
Kung Fu Cup
4 days
WardiTV Korean Royale
4 days
BSL 21
4 days
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
IPSL
4 days
Dewalt vs WolFix
eOnzErG vs Bonyth
Wardi Open
5 days
Monday Night Weeklies
5 days
WardiTV Korean Royale
6 days
Liquipedia Results

Completed

Proleague 2025-11-07
Stellar Fest: Constellation Cup
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
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
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.