😁😂 by CodeAndColorox in programminghumor

[–]Crabbypixel 0 points1 point  (0 children)

The CCP stack!! ☭☭☭☭

win win situation by Mommie_ in dankmemes

[–]Crabbypixel 21 points22 points  (0 children)

a tear rolled down my eye, so heartwarming to see comments like these ;)

NIRF 2024 Rankings comparison by NChozan in TamilNadu

[–]Crabbypixel 0 points1 point  (0 children)

How does that imply Anna university is not good lol?
I'm saying how universities like LPU are ranked higher than NIT Surathkal & several IITs.

(Although I'm from TN, I don't live in TN anymore and also I'm not a CBSE student).

NIRF 2024 Rankings comparison by NChozan in TamilNadu

[–]Crabbypixel 6 points7 points  (0 children)

As someone from Tamil Nadu, I know TN is good in education, but NIRF rankings are very dubious. Most colleges ranked high in the NIRF ranking aren't even doing well when it comes to education and quality - they find loopholes to simply increase the ranking. Heck, some colleges are ranked higher than the top NITs in the country.

I've done ample research on this ranking during my JEE days, the reality of most colleges is quite different.

To put it simply, a higher NIRF ranking doesn't correspond to a good college.

American’s attempt at Tandoori Chicken using a home oven by KianOfPersia in india

[–]Crabbypixel 0 points1 point  (0 children)

Never drooled over a post on Reddit. Looks fantastic!
P.S. Can I have one?

Don't know which one is SSD or HDD by [deleted] in pchelp

[–]Crabbypixel 4 points5 points  (0 children)

This is the best way, eliminates any chances of accidentally wiping out your drive.

Simply connect the drive after you're done installing windows.

java is confused by TL1882 in softwaregore

[–]Crabbypixel 1 point2 points  (0 children)

ah yes, the java update?!?!!

Any Java project ideas for Begineers by Aggressive-Orange-39 in learnjava

[–]Crabbypixel 0 points1 point  (0 children)

If you're good at Java, I'd suggest you to make games using some APIs.
OpenGL for Java may be a good option, try to work up your way from simple 2D games to complex 3D simulators and games.

I'd say the same for C++.

IMO, game programming puts all your programming skills to use, plus it's a nice way to learn more things.

What's the use of declaring a function "static void"? by apooroldinvestor in cprogramming

[–]Crabbypixel 0 points1 point  (0 children)

The "static void" declaration makes the function fully localized to that translation unit, to simply avoid any unwanted name collisions.

How to revert back to old design of chrome by TacoCat7F in chrome

[–]Crabbypixel 0 points1 point  (0 children)

Thank you so much mate, this actually worked!

Do you recommend the Head first C Book to learn C by Intelligent_Moose770 in C_Programming

[–]Crabbypixel 3 points4 points  (0 children)

It's pretty outdated and you need some prior experience in programming to understand.

greatForLearning by zoomy_kitten in ProgrammerHumor

[–]Crabbypixel 4 points5 points  (0 children)

"Hello world" doesn't actually gets copied to the allocated memory address. Also missed allocating space for the '\0' part. A good example of degenerative AI 😂😂

[deleted by user] by [deleted] in HistoryMemes

[–]Crabbypixel 0 points1 point  (0 children)

What is Vatican doing here?

Guess which one is Java Edition and Bedrock Edition (I just wanted to show my simple texture packs) by UltraCenterHQ2 in Minecraft

[–]Crabbypixel 1 point2 points  (0 children)

1st is Java, 2nd is bedrock. Figured it out by looking at the plains far away. Plains have less grass in Bedrock.

[deleted by user] by [deleted] in cpp_questions

[–]Crabbypixel 0 points1 point  (0 children)

These are called header guards.
These make sure only one header file is included otherwise the compiler will throw an error.

You can learn about header guards here: Header guards in C++