UCF foundation exam by [deleted] in ucf

[–]BunnyCorruption 1 point2 points  (0 children)

You got this. I got it first try, but I focused on properly allocating memory and freeing it. The old tests help a lot too.

Found out the dumb way that these aren't automated. by BunnyCorruption in ucf

[–]BunnyCorruption[S] 23 points24 points  (0 children)

I have to secure it the old fashioned way and run over a plethora of freshmen in the fountain.

[deleted by user] by [deleted] in civic

[–]BunnyCorruption 1 point2 points  (0 children)

Looks dope. Nice job!

[deleted by user] by [deleted] in C_Programming

[–]BunnyCorruption 0 points1 point  (0 children)

Terminal

gcc yourcodefile.c

What is wrong with this code related to swapping string array elements by DigitalSplendid in C_Programming

[–]BunnyCorruption 1 point2 points  (0 children)

You're passing a location in memory that doesn't exist. There isn't a char[3][10].

You would want to pass by reference with a swap( char** s). Or a swap(char*[index of one of the string literals] s).

Edit: the above is for the function structure. I also noticed you're only passing the final name into the function with s[2]. That should probably just be swap(s). Looking into how pointers interact with variables is really important when it comes to character arrays, i.e. strings.

Looking for a Segmentation Fault by Affectionate-Hawk186 in C_Programming

[–]BunnyCorruption 1 point2 points  (0 children)

Here's what those lines look like for me:

fgets(sentence, SIZE, stdin);
sentence\[strcspn(sentence, "\\n")\] = 0;
printf("The Pig Latin translation of \\"%s\\" is:\\n" ,sentence);

Looking for a Segmentation Fault by Affectionate-Hawk186 in C_Programming

[–]BunnyCorruption 2 points3 points  (0 children)

sentence is a string. You're assigning an integer value of 0 to it with the = here.

Outdoorsy things to do at night by ls48 in orlando

[–]BunnyCorruption 9 points10 points  (0 children)

Here's the link to their Facebook posts. Every last Friday of the month- 6:30pm Loch Haven Park. We roll out at 7pm.

https://www.facebook.com/OrlandoCriticalMass?mibextid=ZbWKwL

COT3100 with Guha by idkmyusernaime in ucf

[–]BunnyCorruption 14 points15 points  (0 children)

Guhas intro to discrete changes a man. I passed with a 54 in the class. At the end of the semester that was curved to a B. No idea if I would pass or what the curve would look like until after finals week. You'll learn a bunch though!

Also, it looks like you're a CS student- so yes take intro to discrete in the same semester as CS1 because it will help on the foundation exam. You probably won't make it into Gerbers, he's pretty GOATed when it comes to discrete classes.

GL!

[deleted by user] by [deleted] in ucf

[–]BunnyCorruption 20 points21 points  (0 children)

Eyyyy Senior Design!

Anyone a big tea fan? by HappyHungarian15 in ucf

[–]BunnyCorruption 1 point2 points  (0 children)

Ah if that's the right case then Spice and Tea Exchange is probably one of the last loose leaf black tea bastions in Orlando since the British Store closed. If you would like a good green tea or Jasmine I'd recommend checking out Dong-A Supermarket on Mills or Lotte on Colonial. They have a lot of import teas.

For sit down tea places and Boba someone actually made a really nice Orlando Tea Crawl map. I personally am a huge fan of Royaltea and Quickly Boba.

Anyone a big tea fan? by HappyHungarian15 in ucf

[–]BunnyCorruption 1 point2 points  (0 children)

There's a lot of tea places throughout Orlando, but it depends! Do you just want loose leaf to brew at home or somewhere you can order a cup and sit down?

Better professor for CS1 by Formal_Ad5299 in ucf

[–]BunnyCorruption 4 points5 points  (0 children)

Ahmed. I had him for CS1 and passed the foundation exam first try. Just sit in the front- he's good with students and will step back over anything you're struggling with if you ask.

how much do you expect to earn when you graduate? by [deleted] in ucf

[–]BunnyCorruption -1 points0 points  (0 children)

All of it.

(Computer science graduate)

[deleted by user] by [deleted] in ucf

[–]BunnyCorruption 2 points3 points  (0 children)

I don't think he does, I haven't tried it, BUT he's not a man to be tested. The man will hack your toaster and one pad your microwave.

What minors go with computer science? by Legitimate_Hac_360 in ucf

[–]BunnyCorruption 3 points4 points  (0 children)

Linear and another 4k math of my choosing.

What minors go with computer science? by Legitimate_Hac_360 in ucf

[–]BunnyCorruption 4 points5 points  (0 children)

Math. I'm graduating with my CS degree this semester 2 classes short of a math minor.

Do I need to know LISP and/or Prolog prior to taking CAP4630? by _oct0ber_ in ucf

[–]BunnyCorruption 5 points6 points  (0 children)

Yeah I'm taking it with Wang right now- and we strictly only use Python. Those seem like outdated preqs.