• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 19:25
CET 00:25
KST 08:25
  • 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
ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
BGE Stara Zagora 2026 cancelled10Blizzard Classic Cup - Tastosis announced as captains12Weekly Cups (March 2-8): ByuN overcomes PvT block4GSL CK - New online series18BSL Season 224
StarCraft 2
General
BGE Stara Zagora 2026 cancelled BGE Stara Zagora 2026 announced ByuL: The Forgotten Master of ZvT Terran AddOns placement Blizzard Classic Cup - Tastosis announced as captains
Tourneys
StarCraft Evolution League (SC Evo Biweekly) [GSL CK] Team Maru vs. Team herO WardiTV Team League Season 10 Master Swan Open (Global Bronze-Master 2) RSL Season 4 announced for March-April
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 516 Specter of Death Mutation # 515 Together Forever Mutation # 514 Ulnar New Year
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ ASL21 General Discussion BW General Discussion Gypsy to Korea Are you ready for ASL 21? Hype VIDEO
Tourneys
[Megathread] Daily Proleagues [BSL22] Open Qualifiers & Ladder Tours IPSL Spring 2026 is here! ASL Season 21 Qualifiers March 7-8
Strategy
Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Zealot bombing is no longer popular?
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile Nintendo Switch Thread PC Games Sales Thread No Man's Sky (PS4 and PC)
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
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
Five o'clock TL Mafia Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Mexico's Drug War NASA and the Private Sector
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Movie Discussion! [Req][Books] Good Fantasy/SciFi books [Manga] One Piece
Sports
Formula 1 Discussion 2024 - 2026 Football Thread General nutrition recommendations Cricket [SPORT] TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Gaming-Related Deaths
TrAiDoS
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1772 users

The Big Programming Thread - Page 864

Forum Index > General Forum
Post a Reply
Prev 1 862 863 864 865 866 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
BluzMan
Profile Blog Joined April 2006
Russian Federation4235 Posts
March 26 2017 19:56 GMT
#17261
On March 27 2017 00:45 travis wrote:
Oh blitz that's an excellent example, thank you.

Just to make sure I am on the right page here, the poblem is that when we dereference p and w in our print statement, they are both going to print from the same address, which currently holds the result of get_val(100) ?


You won't advance at all in C/C++ before you learn the basics, which includes automatic/manual memory and pointers. What you're doing is that you're leaking a pointer to automatic memory (which is always scoped, in this case, within the function body) outside of it's scope. Dereferencing such a pointer is undefined behavior - your program is allowed to do anything, including really gruesome stuff.
You want 20 good men, but you need a bad pussy.
Wrath
Profile Blog Joined July 2014
3174 Posts
March 27 2017 06:22 GMT
#17262
Any ETA on the "Soon" new OP?
DickMcFanny
Profile Blog Joined September 2015
Ireland1076 Posts
March 27 2017 08:41 GMT
#17263
Are there any game devs here?

I'm doing a web dev course but it itches me to start creating a game 2d game in the vein of Super Metroid.

What technologies should I start to learn if my focus is low input latency and 60 FPS / controller support?
Game should run on Linux, OSX and Windows.
| (• ◡•)|╯ ╰(❍ᴥ❍ʋ)
Acrofales
Profile Joined August 2010
Spain18232 Posts
March 27 2017 09:11 GMT
#17264
On March 27 2017 17:41 DickMcFanny wrote:
Are there any game devs here?

I'm doing a web dev course but it itches me to start creating a game 2d game in the vein of Super Metroid.

What technologies should I start to learn if my focus is low input latency and 60 FPS / controller support?
Game should run on Linux, OSX and Windows.

All my game Dev friends talk about nowadays is unity, so I'd start with that and see if it suits your needs.
Cyx.
Profile Joined November 2010
Canada806 Posts
March 27 2017 09:12 GMT
#17265
On March 27 2017 17:41 DickMcFanny wrote:
Are there any game devs here?

I'm doing a web dev course but it itches me to start creating a game 2d game in the vein of Super Metroid.

What technologies should I start to learn if my focus is low input latency and 60 FPS / controller support?
Game should run on Linux, OSX and Windows.

Not quite yet but I have a job lined up for when I graduate not experienced with it for 2d games but I hear Unity is totally reasonable in terms of 2d performance, and has the bonus of being able to target all those platforms and more. Definitely supports controllers too. You could probably achieve something similar with other engines (Unreal is another popular one) but I have even less experience with them than with Unity lol
DickMcFanny
Profile Blog Joined September 2015
Ireland1076 Posts
March 27 2017 09:26 GMT
#17266
On March 27 2017 18:11 Acrofales wrote:
Show nested quote +
On March 27 2017 17:41 DickMcFanny wrote:
Are there any game devs here?

I'm doing a web dev course but it itches me to start creating a game 2d game in the vein of Super Metroid.

What technologies should I start to learn if my focus is low input latency and 60 FPS / controller support?
Game should run on Linux, OSX and Windows.

All my game Dev friends talk about nowadays is unity, so I'd start with that and see if it suits your needs.


I'll start with Unity then, there's a billion tutorials and ebooks about that out there anyway.
| (• ◡•)|╯ ╰(❍ᴥ❍ʋ)
tofucake
Profile Blog Joined October 2009
Hyrule19194 Posts
March 27 2017 13:41 GMT
#17267
On March 27 2017 15:22 Wrath wrote:
Any ETA on the "Soon" new OP?

Soon
Liquipediaasante sana squash banana
DickMcFanny
Profile Blog Joined September 2015
Ireland1076 Posts
March 27 2017 13:42 GMT
#17268
soon™
| (• ◡•)|╯ ╰(❍ᴥ❍ʋ)
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
March 27 2017 21:31 GMT
#17269
Ok, need help with a proof, maybe some of you could tell me what you think

Question:

+ Show Spoiler +

Let T be defined by:

T_0 = {0, 1, 2, 3, 4, 5, 6}
(for all n >= 0)[if x,y,z are in T_n, then x^2+y^2+z^2 are in t_(n+1)]

T = The union from i=0 to infinity of T_i

(so, it's T_0 U T_1 U T_2 etc etc)

Now, prove that for all w in T, w is not congruent to 7 (mod 8) using structural or weak induction


So, this is what I have so far:

+ Show Spoiler +

For all w in T_0, w fulfill the following cases

w = 0, w^2 is congruent to 0 mod 8
w = 1, w^2 is congruent to 1 mod 8
w = 2, w^2 is congruent to 4 mod 8
w = 3, w^2 is congruent to 1 mod 8
w = 4, w^2 is congruent to 0 mod 8
w = 5, w^2 is congruent to 1 mod 8
w = 6, w^2 is congruent to 4 mod 8

Therefore for all w in T_1, we have the following cases (all values are mod 8)

0+0+0 = 0
0+0+1 = 1
0+1+1 = 2
1+1+1 = 3
4+0+0 = 4
4+0+1 = 5
4+1+1 = 6

so like.. i think I already have shown what it takes to prove it. But I don't know how to form this into an inductive proof. Particularly weak induction where I need an inductive base, and inductive hypothesis, and inductive step. My base would be T_0 proof, but I don't know where I would go from there. So yeah, any help with that would be awesome

Acrofales
Profile Joined August 2010
Spain18232 Posts
March 27 2017 21:56 GMT
#17270
Assume it holds for T_n, and use that to prove it holds for T_n+1
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
March 27 2017 22:05 GMT
#17271
ohhhhhhhhhh right thanks
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-03-28 21:28:10
March 28 2017 19:55 GMT
#17272
I have a quiz on dynamic memory allocation tomorrow and I am a bit behind so I am reviewing.

+ Show Spoiler +

Implement the append function that has the prototype below. The function returns a string that represents
the concatenation of all the strings present in an array of strings. For this problem, you can assume the end
of the parameter array is marked by NULL. You need to allocate memory for the resulting string. You may
not modify the array parameter.
char* append(char *data[]);


Is this how you do that? Handwriting, not testing any of these yet.

+ Show Spoiler +


char* append(char *data[]) {
size = 0;
index = 0;
char *appendvalue;

while(data != NULL) {
size = strlen(data[index]) + size;
index++
}

appendvalue = malloc(size + 1)

index = 0;
while(data != NULL) {
strcat(appendvalue, data[index]);
index++
}

return appendvalue;
}




ok now please take it easy on me... very little experience in this realm. I have a feeling I am screwing multiple things up. Such as if I am even using strcat right (I get confused about the actual difference between how C treats a character array vs a char pointer. Also i suspect that the better way to do this may to use realloc in my first while loop and I wouldn't need a second while loop?

Or maybe I am just super super off base with all of this and am so far off that a hero can swoop in and save me?

Anyways thanks all for your time.

edit: more

+ Show Spoiler +

The following C statement creates an array of 14 characters.
char *desc = (char *) malloc(sizeof(char) * 14);
Indicate whether the code can be simplified or not. If the code cannot be simplified indicate NO. If it can be
simplified rewrite the code below.


change it to malloc(14) ?

last one:

+ Show Spoiler +

The following structures are used for these questions.

#define MAX_LEN 80
typedef struct {
char *title;
int duration;
} Song;
typedef struct {
Song* all_songs; /* array of songs */
int number_of_songs;
char album_name[MAX_LEN + 1];
} Album;

a. Given two Song structures s1 and s2, are there any problems with assigning one structure to another? Is
deep copying taking place during the assignment of these two structures?
b. Define a function that initializes a Song using a duration and a string provided. The function will make a
copy of the string parameter.
c. Define a function that will initialize an Album structure based on an array of Songs provided as parameter.
The function will create a dynamically-allocated array of Songs and will initialize each entry with a copy of
the corresponding song in the parameter array. Feel free to add to the function any parameters you
understand are needed.



+ Show Spoiler +

a.) is there a problem in that when everything is copied, the pointers are copied, which could lead to problems, since we can't independently change the songs in one album without changing the songs in the other?

b.)


Song init_song(int d, char *s) {
Song song;
strcopy(song.title, s);
song.duration = d;
return song;
}

//eh... this easy?


c.)

Album init_album(Song *songs) {
Album album;
album.album_name = "they didn't say anything about this";

//I don't know how to assign the songs.
//I don't even know how to tell when I have hit the last song. I mean I go through them with pointer //incrementation, right? But how do I know when I am past the last song? Does the pointer become //null?


thanks
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2017-03-28 22:17:20
March 28 2017 21:40 GMT
#17273
--- Nuked ---
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-03-28 21:56:48
March 28 2017 21:54 GMT
#17274
Nesserev, first, thank you for the comprehensive review of my code.

Quick question - what is the actual purpose of casting malloc? Isn't it just a chunk of memory?

People seem to be arguing about it here: http://stackoverflow.com/questions/605845/do-i-cast-the-result-of-malloc

But I don't understand why a chunk of memory needs a type anyways! Isn't it getting it's type by being assigned to something?

edit: I guess the malloc function returns a pointer. so me calling it "just a chunk of memory" is clearly incorrect.
Biolunar
Profile Joined February 2012
Germany224 Posts
March 28 2017 21:58 GMT
#17275
Casting the return value of malloc is a bad idea. void* will be implicitly converted into any other pointer type, so don’t cast it.
What is best? To crush the Zerg, see them driven before you, and hear the lamentations of the Protoss.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2017-03-28 22:21:37
March 28 2017 22:14 GMT
#17276
--- Nuked ---
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
March 28 2017 22:21 GMT
#17277
While I have got you guys, could you take a look at the 4th spoiler? I feel more confident since I was in the ballpark on the first one, but I am really unsure what to do for this question.
Blitzkrieg0
Profile Blog Joined August 2010
United States13132 Posts
March 28 2017 22:28 GMT
#17278
On March 29 2017 06:58 Biolunar wrote:
Casting the return value of malloc is a bad idea. void* will be implicitly converted into any other pointer type, so don’t cast it.


I've always seen casting malloc as part of the coding standard. While pointless it is a sanity check.
I'll always be your shadow and veil your eyes from states of ain soph aur.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2017-03-28 23:47:35
March 28 2017 23:38 GMT
#17279
--- Nuked ---
TMG26
Profile Joined July 2012
Portugal2017 Posts
March 29 2017 14:02 GMT
#17280
On March 29 2017 07:28 Blitzkrieg0 wrote:
Show nested quote +
On March 29 2017 06:58 Biolunar wrote:
Casting the return value of malloc is a bad idea. void* will be implicitly converted into any other pointer type, so don’t cast it.


I've always seen casting malloc as part of the coding standard. While pointless it is a sanity check.


It's also recommended in older C standards.
Supporter of the situational Blink Dagger on Storm.
Prev 1 862 863 864 865 866 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 35m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft307
ProTech131
JuggernautJason112
StarCraft: Brood War
NaDa 21
Jaeyun 7
Dota 2
monkeys_forever320
capcasts89
Counter-Strike
minikerr10
Heroes of the Storm
Liquid`Hasu357
Other Games
summit1g11875
FrodaN3896
shahzam586
byalli450
KnowMe336
C9.Mang0210
ViBE79
PPMD25
Organizations
Other Games
gamesdonequick2233
ComeBackTV 187
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 19 non-featured ]
StarCraft 2
• musti20045 44
• davetesta35
• mYiSmile15
• Kozan
• sooper7s
• AfreecaTV YouTube
• intothetv
• IndyKCrew
• LaughNgamezSOOP
• Migwel
StarCraft: Brood War
• RayReign 59
• Azhi_Dahaki9
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21329
League of Legends
• Doublelift5240
Other Games
• Scarra1106
• imaqtpie878
Upcoming Events
Replay Cast
35m
CranKy Ducklings
10h 35m
RSL Revival
10h 35m
MaxPax vs Rogue
Clem vs Bunny
WardiTV Team League
12h 35m
uThermal 2v2 Circuit
17h 35m
BSL
20h 35m
Sparkling Tuna Cup
1d 10h
RSL Revival
1d 10h
ByuN vs SHIN
Maru vs Krystianer
WardiTV Team League
1d 12h
Patches Events
1d 17h
[ Show More ]
BSL
1d 20h
Replay Cast
2 days
Replay Cast
2 days
Wardi Open
2 days
Monday Night Weeklies
2 days
WardiTV Team League
3 days
GSL
4 days
The PondCast
5 days
WardiTV Team League
5 days
Replay Cast
6 days
WardiTV Team League
6 days
Liquipedia Results

Completed

Proleague 2026-03-12
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
BSL Season 22
Proleague 2026-03-13
RSL Revival: Season 4
Nations Cup 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

CSL Elite League 2026
ASL Season 21
Acropolis #4 - TS6
2026 Changsha Offline CUP
Acropolis #4
IPSL Spring 2026
CSLAN 4
HSC XXIX
uThermal 2v2 2026 Main Event
NationLESS Cup
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
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 © 2026 TLnet. All Rights Reserved.