• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 10:12
CET 16:12
KST 00:12
  • 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 Canada2SC: 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 SC: Evo Complete - Ranked Ladder OPEN ALPHA Weekly Cups (Nov 3-9): Clem Conquers in Canada Craziest Micro Moments Of All Time? 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
[Megathread] Daily Proleagues [ASL20] Grand Finals [BSL21] RO32 Group A - Saturday 21:00 CET [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 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
Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine US Politics Mega-thread 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
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
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: 1690 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
WardiTV Korean Royale
12:00
Group Stage 1 - Group B
WardiTV1042
TKL 405
Rex123
IntoTheiNu 38
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
TKL 405
RotterdaM 236
Rex 123
SortOf 114
Vindicta 28
StarCraft: Brood War
Calm 4043
Shuttle 1043
Soma 1042
firebathero 803
Hyuk 691
Stork 459
ZerO 384
hero 280
Rush 213
Sharp 105
[ Show more ]
Killer 104
Barracks 104
sSak 101
Sea.KH 68
Backho 40
Aegong 40
Mong 31
ToSsGirL 29
Free 27
Sexy 22
zelot 16
Movie 14
Terrorterran 14
Shine 13
Dota 2
singsing2181
Dendi1031
BananaSlamJamma147
XcaliburYe120
Counter-Strike
olofmeister1771
markeloff116
FunKaTv 4
Other Games
B2W.Neo1101
hiko632
crisheroes350
DeMusliM318
Hui .302
Lowko297
Sick191
Fuzer 155
Liquid`VortiX145
ArmadaUGS135
oskar115
ZerO(Twitch)13
Reynor8
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 16 non-featured ]
StarCraft 2
• Adnapsc2 5
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• HerbMon 22
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 2257
• WagamamaTV354
League of Legends
• Nemesis3668
• TFBlade757
Upcoming Events
OSC
48m
Replay Cast
7h 48m
Replay Cast
17h 48m
Kung Fu Cup
20h 48m
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
1d 7h
The PondCast
1d 18h
RSL Revival
1d 18h
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
1d 20h
WardiTV Korean Royale
1d 20h
PiGosaur Monday
2 days
[ Show More ]
RSL Revival
2 days
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
2 days
CranKy Ducklings
3 days
RSL Revival
3 days
herO vs Gerald
ByuN vs SHIN
Kung Fu Cup
3 days
BSL 21
4 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
5 days
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
Wardi Open
5 days
Monday Night Weeklies
6 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.