#c++ pointers
Explore tagged Tumblr posts
technology1122 · 8 months ago
Link
https://techbloggerworld.com/2024/05/25/c-pointers/
0 notes
dataglitch · 5 months ago
Note
Hi, I was just wondering how you do all your highlights and shading because ur characters always look so shiny! Obviously you don't have to tell me tho, I adore your art.
Hey there! I've done a few tutorials actually if you check my 'tutorial' tag. Some thorough, some quick. I have already mentioned before that I'll do a more deeper explanation on the process a while back and I'm still working on it!! Got at basic outline done but the writing is separated via notes or other apps, just gotta clean and compile :'D
Tumblr media
It's text heavy so I'm going to have to cut a lot of pieces out or shorten it, but hoping it gets the point across! Of course it also has a image to go along with so we can work on it together :) Let me finish my current workload and I'll get back to this, sorry for the delay guys u-u
69 notes · View notes
castur1 · 1 year ago
Text
Programming? On my Tumblr?
It's more likely than you think >:3
So anyways here's an early tech demo for a lil project I've been working on. I'm making a game in pure C without any external libraries or game engines or whatever, writing everything from the ground up. Why? To see if I could. And also because I hate myself.
This bad boy's got low-latency audio output with a custom audio mixer and WAV file loading, input handling (keyboard + mouse, no controller support yet), and a basic graphics renderer (with BMP file support), as well as some other fun little features. It's built on the Windows API but all the platform code is isolated so that the game can easily ported. And what grand creation shall I make with this? ...Tetris. I'm planning to make a Tetris clone. Lol.
Oh, and the tetris remix you hear in the background? Wrote that myself. Music was never my strongest subject but I am determined to make everything by myself.
That is all.
239 notes · View notes
stellewriites · 13 days ago
Text
i’m back again asking what nail design to try next :3 poll so that people can vote anon if they want
Tumblr media Tumblr media Tumblr media Tumblr media
17 notes · View notes
gnomewithalaptop · 7 days ago
Text
Currently learning css + html for real this time instead of just tweaking shit I find on the internet and hoping for the best -- y'all why is it built like this
6 notes · View notes
cerulity · 5 months ago
Text
hmmmm
if
Tumblr media
and
Tumblr media
then can i
Tumblr media
?
8 notes · View notes
daemonhxckergrrl · 2 years ago
Text
just python things. this operation to reverse a number:
rev = int(str(num)[::-1])
is faster than this:
while num >= 1: rev = (rev * 10) + (num % 10) num = int(num/10)
for reversing an integer, because why wouldn't it be lmao
yeah let's just cast to string then chop backwards, and cast back to integer then save as a new variable. i suppose mod is a more expensive operation ??
but yeah it's like roughly 4x faster to use string comprehension.
103 notes · View notes
canary-song · 3 months ago
Text
(Through gritted teeth) All that matters is earning the degree. You just need to pass.
4 notes · View notes
cocksley-and-catapult · 2 years ago
Note
Did they hack their 3DS if they have one? It's actually really easy to
Tumblr media
21 notes · View notes
fortunatelycoldengineer · 11 months ago
Text
Tumblr media
What is the difference between malloc() and calloc()? . . . . for more interview questions https://bit.ly/3EteTnZ check the above link
3 notes · View notes
wienschrift · 1 year ago
Text
Tumblr media Tumblr media
27.12.2023: Hans Carl Artmann
4 notes · View notes
zoeythebee · 1 year ago
Text
Codertober Day 10
I missed writing down the past handful of days because it's been bits and pieces here and there.
But today I finally finished the Javascript roadmap, which took me an embarrassingly long time. Although if I think about it, distilled down it probably took me like 8 hours.
Next im either gonna blast through the Python roadmap or look at the computer science roadmap which goes over algorithms and data structures which is probably the skill I actually need the most work on.
All in all I kinda dislike this learning style so far, which is how I did it in school which was WRITE DOWN EVERYTHING. And then in school I'd use it to pass tests, but my plan was to use it as a reference for actually building some projects.
But I was testing out Javascript modules and there were, like, 3 things I had to stumble my way through because they weren't stated explicitly enough in the material I was reading for me to write them down.
I kinda wanna streamline that stumbling stage and maybe i'll just dive headfirst into a project and google my way to success, which I think would be more fun and make it so I actually learn.
10. What is your programming pet peeve
"One time it took me 2 hours to fix my code, turns out I had just missed a semicolon" read your goddamn motherfucking error messages, if you took two seconds to read past "syntax error" you'd catch it in two seconds.
"Uhn my pointer isn't working???" your compiler told you it's null you never allocated it!
READ YOUR ERROR MESSAGES.
That is all, thank you.
4 notes · View notes
nihilismisforkids · 9 months ago
Photo
> segmentation fault (core dumped)
Tumblr media
42K notes · View notes
herovired12 · 18 days ago
Text
Pointer To Object In C++ is a variable that holds the memory address of an object. This allows for dynamic memory allocation, enabling the creation and manipulation of objects at runtime. Pointers facilitate efficient resource management and provide access to object members and methods through the pointer syntax. Check here to learn more.
0 notes
unicminds-codingforkids · 19 days ago
Text
0 notes
cups-official · 1 month ago
Text
the first rule of using pointers is have fun and be yourself
0 notes