#learn C++ Programming
Explore tagged Tumblr posts
Text
Post #83: Tumblr Opinion Poll by Python-Programming-Language, Question: Which programming resp. script language do you prefer?, 2023.
#programming#coding#coding is fun#i love coding#learning#education#i love programming#programming language#python#c++#c sharp#visual basic#small visual basic#i love python#php#scratch#html#css#java#javascript#script language#opinion poll
212 notes
·
View notes
Text
1/100 days of code.
12.22.23
i have started of this challenge by learning C++ through MIT's open course Introduction to C++ found here, where i studied the first lecture and read through the second. this course is designed to be completed in a 4 week term, but depending on my availability, it may stretch as i take breaks from it specifically, and then circle back on coursework to retain information learned. we shall see
#include
using namespace std;
.
int main(){
.....cout<<"Hello, world!\n";
.....return 0;
}

#codeblr#progblr#programming#coding#100 days of code#c++#c++ programming#learn to code#kingsoriginal#kingscode
60 notes
·
View notes
Text
Post #176: Opinion poll by Small Basic Programming on Tumblr, Question: Which object-oriented programming language do you prefer to program with?, 2023.
#coding#programming#programmieren#education#learning#object oriented programming#python#java#c++#c#ruby#go#javascript#php#simula#smalltalk#scala#eiffel#opinion poll#survey
74 notes
·
View notes
Text
Why Does C++ Run Faster?
Java, C#, or Python do not generate native code. Instead, they compile source code into an intermediate code. There are additional tools or programs you can use to translate this intermediate code application into machine code. While these programs convert your code to machine code, they consume various system resources.
C++'s compile and run speeds are very high because there are no overheads like in other languages.
86 notes
·
View notes
Text
I AM SO GOOD AT CIRCUIT BUILDING AND PROGRAMMING RAAAAA
C++ script under cut :3
int UpDown; //value for the Y direction of controller
int LeftRight; //value for the x direction of controller
int LR_neutral; //value for the 0 position in the y direction of controller
int UD_neutral; //value for the 0 position in the x direction of controller
int Bprev; //value for button edge detection
int Bcurr; //value for button edge detection
int R;
int Y;
int G;
int B;
void setup() {
Serial.begin(9600); //begin communication
pinMode(A2, INPUT); //button press detection
pinMode(4, OUTPUT); //set pin 4 to power the Red LED
pinMode(5, OUTPUT); //set pin 5 to power the Yellow LED
pinMode(6, OUTPUT); //set pin 6 to power the Blue LED
pinMode(7, OUTPUT); //set pin 7 to power the Green LED
LR_neutral = analogRead(A1); //set zero position of controller
UD_neutral = analogRead(A0); //set zero position of controller
//WARNING!!! YOU CAN NOT TOUCH CONTROLER WHEN INITALIZATION HAPPENS!!!! WILL MESS CONTROLLER UP
}
void loop() {
LeftRight = analogRead(A0); //read X position of controller
UpDown = analogRead(A1); //read y position of controller
Bprev = Bcurr; //set current button state to previous state
Bcurr = analogRead(A2); //set current button state equal to actual button state
if ((Bprev == 0) && (Bcurr > 0)){
//turns all LED on
digitalWrite(4,HIGH);
digitalWrite(5,HIGH);
digitalWrite(6,HIGH);
digitalWrite (7,HIGH);
delay(100); //wait
//turns all LED off
digitalWrite (4,LOW);
digitalWrite (5,LOW);
digitalWrite (6,LOW);
digitalWrite (7,LOW);
}
if (UpDown >= UD_neutral) { // checks if controller is up
B = 0; //if up turns blue LED off
R = map(UpDown, UD_neutral,1023,0,255); //if up turns red LED on
}
else {
R = 0; //if down turns red LED off
B = map(UpDown, UD_neutral,0,0,255); //if down turns blue LED on
}
if (LeftRight >= LR_neutral) { // checks if controller is right
G = 0; //if right turns green LED off
Y = map(LeftRight, LR_neutral, 1023,0,255); //if right turns yellow LED on
}
else {
Y = 0; //if left turns yellow off
G = map(LeftRight, LR_neutral, 0,0,255); //if left turns green on
}
//writes values to LEDs
analogWrite(4,R);
analogWrite(5,Y);
analogWrite(6,B);
analogWrite (7,G);
}
#Do you want to learn C++#because I know C++#people who know what they are doing know that this code has several issues tho :/#but it works!!!#And I'll take that#programing#circuit diagram#curcuits#prototype circuit#arduino#I'M GONNA MAKE A ROBOT AND NO ONE CAN STOP ME#yes this is unironically my homework#I love college!
5 notes
·
View notes
Text
WHAT THE FUCK DO YOU MEAN C++ DOESN'T HAVE A SPLIT FUNCTION
#I'm just trying to do my homework man#spare me this suffering#let me out#let me go back to c sharp i beg#fuck man I'll take js#oh yeah i also learned the other week it called dictionaries “maps” instead???#code#codeblr#coding#programming#cppprogramming#cpp#c++#c++ programming
3 notes
·
View notes
Text
Days 110 to 118 of coding everyday for a year and I've gotten so much done!
I finish both of my finals the C++ and the C#. The C++ final is an adventure game and it wasn't too challenging to make honestly I had fun with it. The C# project was also fun because I got to play with microcharts when creating the statistics page to display collected data! I plan to make the C++ game more fun honestly because I can't just let it die from here. I am going to make the Android and iOS build better on the C# project. I'm really proud of myself today :)
My next adventures will be brushing up on JavaScript since I'm severely out of practice and using what I know to make my portfolio website using Blazor!
#self improvement#cosmickittytalk#codeblr#csharp programming#csharp#csharp is superior#girls who code#programming#coding challenge#coding for a year#coding exercises#coding#learning new syntax#learning programming#learning to code#college homework#college life#college finals#computer science major#programmer#work in progress#maui app#.net developers#.net framework#.net development#.net core#.net maui#.net#c++ course#c++ programming
17 notes
·
View notes
Text
My biggest argument against god's existence is that cpp exists
#cpp#cppprogramming#c++ language#c++ programming#c++#c++ course#learning cpp#learning c++#what the hell is this language?
7 notes
·
View notes
Text
i've gotta program something soon...
#my posts#gets computer science degree#proceeds to do no programming for 4 months#i have like a few programming ideas but starting things is hard#i want to play with godot more it seems fun#i should probably also learn C++ for job reasons since i want to get into lower level/embedded stuff and only know C and rust#i guess the problem there is i'd have to like come up with a project to learn it with#preferably something lower level#maybe finally do that make your own file system project i skipped?#or like something with compression and parsing file formats#that's all pretty involved though so something like playing with godot would probably be better to get myself back in the programming mood#some sort of silly 2d game probably#i've had thoughts of making a silly little yume nikki-like for my friends to play that could be fun#or just any silly little game for just my friends idk#starting with gamemaker kinda made using other game engines a bit weird for me#so getting used to how more normal game engines work would probably be useful#i also want to mess with 3d games that seems fun too#but see the problem with all of this is that i suck at starting projects#and am even worse at actually finishing them#well i guess we'll see what happens?#also hi if you read all of this lol
17 notes
·
View notes
Text

2 notes
·
View notes
Text

My latest certificate in C programming ...

Post #228: SoloLearn, Introduction to C, 2025.
#coding#programming#i love coding#education#coding is fun#i love programming#learning#programming language#coding c#c programming
3 notes
·
View notes
Text
Question regarding languages: Python & C#
Is it possible to learn both languages at the same time? Or will it be easy to get confused between the two? I thought I would come to the lovely codeblr people who have a vast amount of experience for advice. C# is something I *want* to learn, but I *have* to learn Python for for my course that starts in January...I just want to see if it is plausible to learn both at the same time or if it will mess up my learning if I try and learn both. I'd love to hear about your experiences and what your first languages were when you first started out in the world of coding!!
#codeblr#coding#programming#computer languages#python#c sharp#c#learning to code#c++#object oriented programming#advice please!!#learning
48 notes
·
View notes
Text
Programming is so fun whaatt the hell
I even enjoy the rabbit holes I fall down trying to learn something new/solve a problem; there's so much vocabulary I don't know so I end up looking for a solution and then needing to search "what does [funky coding word] mean" every few mins LOL
And the flow is just so nice once I understand what Im doing! You get into a groove n you're just typing code for hours while listening to music or a podcast or whatever aaaahhh
#I'm entirely new to everything so its all super exciting!!#ive started learning c-sharp for game development.. but I love how many languages there are to learn#feels like there's always something new I can do/learn with programming#will I ever run out of fun??#Im almost certain any programmer reading this is thinking 'enjoy this excitement while it lasts..' LMAO but I am and I WILL#feli thoughts#codeblr#programming#csharp#game development#game dev
25 notes
·
View notes
Text

Give Up C/C++! Microsoft Official Announcement: Please Use Rust to Write Windows Drivers!
Microsoft has released a series of development toolkits on GitHub, allowing developers to use the Rust language to write Windows drivers. link: Give Up C/C++! Microsoft Official Announcement: Please Use Rust to Write Windows Drivers! | by Lucas Scott | Oct, 2023 | Stackademic
39 notes
·
View notes
Text
Oh yeah yesterday I went to my C programming professor's office hours to ask about what's being covered in class tomorrow. Since I can't go bc of my PT appointment overlapping with it & I'm apparently the kind of student that cares about attending every single class now.
While I was there, I ended up chatting with him about a few things, including my current standing in the class. He asked what I got on the midterm exam, & I answered it was an 87, and he told me I was one of the top 5 or 6 scores in the Whole Class (this being a like. Maybe 70 or so person class). Top score was a 92 or 93 (idr lol) & the class average was a 72. Apparently there were a few of us in the upper 80s/lower 90s, but most people got 70s or lower. And once he does the curve on the exam, he said I'd probably end up with a 97 or so on the exam. So yay!!!
And then he told me how he's noticed how I come to class every day and am really active with taking notes and answering questions. Bc I also sit up front all the time lmao. Hadn't even realized how much of a damned teacher's pet I've been being, but I've been Trying to be a good student this year. But he said I was the type of student that if I got an 88% or smth in the class, he'd likely bump me up to a 90% so I'd get an A lol. But he also said so long as I keep up with how I have been, I could possibly get a 100% in the class by the end (bc I've been there for all the extra credit questions in class and whatever).
And just. I went there bc I wanted to make sure I didn't miss anything important in class on Wednesday, and I ended up having my ego stroked for Real. Felt good to have my efforts be recognized.
#speculation nation#now if only i could care that much for my web coding class. but oh well im still keeping up even if its a reluctant shamble much of the time#other stuff we talked about was how im graduating this semester & how i plan to stay in indiana to work#bc i have family here & i like the relatively low cost of living. & im not particularly ambitious.#just wanna make enough money to live comfortably. dont need anything fancy beyond that.#& he talked about how that's a good outlook in life. how he's known ppl who went to fuckin silicon valley or whatever#with high paying jobs. but the cost of living is so high that theyre effectively not making much more money than here#he said smth about like. a $70k salary has just as much strength here than a $120k salary there. smth around those#& he praised me on how i seem genuine and hard-working. so he thinks im gonna do just fine in the industry 🥺🥺🥺#i kinda wanted to keep chatting with him but i had to go to bowling class lol. ended up late to it even#bc i checked my phone for the time while chatting and went Oh Fuck bc it wss 1 min after the class started hfkshfks had to rush off then#but yeah makes me feel very nice about that class. i think it rly is my favorite class this semester.#web programming is pretty rewarding and im glad im taking it. but i was basically a complete newbie in html css and javascript#so ive spent quite a lot of time wanting to tear out my fucking HAIR over these labs. b4 it clicks and im like Haha yayy :3#i like C programming bc it's just so much more logical and regimented. it IS the language that got me to give up my engineering degree#since i was thinking about computer engineering. took my first coding class freshman year. and went 'i love this. i want to do CS now'#didnt do that obviously. but im happy where ive ended up. i wouldnt wanna be a programmer lol#and then my quality engineering in IT class. it's certainly engaging. it's the class i constantly have presentations in tho#had Another one this morning. blah! good to keep in practice but i still dont rly enjoy public speaking lmao#probably the most work intensive of my classes. interesting but Blegh#C programming i just keep up with the labs and do the exams and it's wonderful... so logical and comforting...#oh yeah web programming i also have a few presentations. also gotta fucking. code my project pages by next week 😭😭😭#i think it's just the html and css? no javascript yet. thank god. javascript is by far the hardest to learn#but css is so finicky too!!!! ive been struggling with trying to move these fucking input boxes around#i wanna have them on the right!! but they wont go there!!! gotta poke at it more. at least i managed to finish building the form.#still have to finish the lab tho. that was due 2 days ago. lol. also have another one due sunday. AND the project pages. gah!!!#they havent even graded the wireframes yet. i wanted their feedback b4 proceeding to coding >:( oh well#anyways yeah..im keeping busy lol
3 notes
·
View notes
Text
i’m playing with C these days and wanna try some (fun) beginner project.
here, abzu basking shark gif for your attention
19 notes
·
View notes