#C++ language
Explore tagged Tumblr posts
david-goldrock · 10 months ago
Text
My program crashed for an hour or so and I tried to fix it
I finally fixed it
Twas a fucking compiler command gone bad
My code was good
FUCKKKKKKKKKKK
77 notes · View notes
izicodes · 2 years ago
Text
Learning C++ | Log #1
Tumblr media
Friday 20th October 2023
I have been studying C++ for some time now, and I'm really happy with my progress. I really thought it was a super difficult programming language (I am jinxing it right now, aren't I?), but what I mean is that even the beginner stuff would be hard. But it's not!
Two days ago, I stumbled upon a website called Saymor Academy, buried seven pages deep in Google. I decided to check out the CS107: C++ Programming course, and I'm so glad I did! I've been learning so much, and it's been a blast, especially since I'm taking the course along with my friend over on Discord teaching me C++ too.
Learning can be challenging, but it's also incredibly rewarding. Once I master the basics, I'll be able to create all sorts of amazing things. I can't wait!
In the meantime, I'm just enjoying the journey~! So if you're ever thinking about learning C++, I highly recommend checking out Saymor Academy. It's a great resource, and it's a lot of fun!
☆ What I learnt today...
History of C++
Syntax
Comments
Data types
Variables
User Input
Tumblr media
⤷ ♡ my shop ○ my mini website ○ pinned ○ navigation ♡
153 notes · View notes
wetndwildsstuff · 1 year ago
Text
Everyone says Pointers and Function is difficult in C++ but this stupid Arrays specially Bubble Sort and Selection Sort!!! I CAN'T UNDERSTAND IT!!!
48 notes · View notes
codingcorgi · 1 year ago
Text
Tumblr media Tumblr media
I am not dead just severely busy! Days 74-109. I have so much to talk about this time!
So at work (Can't show that due to NDA) I've been bug chasing, and ultimately having to restructure many classes and methods to make one function work as intended.
Then for my C# final I'm still working on my .Net Maui project I finished the journals implementation, and added the event reporting function. I added the events to the journal entry for the day. If there are no entries yet it makes one. I am going to be using the library of microcharts that were used in xamarin (before Xamarin got depreciated into .Net Maui) now it can be used for .Net Maui. I'll be capturing data gathered in the journals to display on graphs to track progress in sleep disorders. At a later time I'll be getting it set up to grab information from sleep tracking apps on mobile.
In C++ my final is to make a game. I am making an adventure game where you can explore a village. It has lore, Easter eggs, and fun imagery (it's a console game unfortunately can't do Unreal). I have to change the code a bit but it has been fun to code!
I might have a contract role coming up for another game studio, so that's exciting.
My plans for the next few days is to get some functionality on the statistics tab in my Maui app, and get my C++ project more put together. At work I'm waiting on the senior dev to plan out how to fix the massive problem we have.
13 notes · View notes
ace-thirst-trap · 2 years ago
Text
cis: gendered at birth
cis+: gendered critical thinking
cis++: gender is object-oriented and polymorphic
54 notes · View notes
wierdfanficwriter · 11 months ago
Text
Tumblr help me, a beginner, learn C++ cause i’ve shot myself in the foot and have four months before our ICT prof makes us start coding, h e l p
2 notes · View notes
mimimicpp · 1 year ago
Text
Hi all.
Today I want to share the result of many days of work.
I finished making a character input field for my application. And although some text editing capabilities are not available, the required minimum is present.
The following text editing options are currently available:
Typing.
Deleting characters using the backspace key.
Moving the carriage between characters.
Selecting characters using the Shift key.
Copying, cutting, pasting characters using the keys Control + C, Control + X and Control + V. Using the clipboard.
The next thing I want to do is read some books about C++. And then continue working on the project.
3 notes · View notes
frog707 · 1 year ago
Text
Hello, Kotlin!
I'm teaching myself a new programming language, sort of.
It's called Kotlin, and you can read about it here and here.
I've used dozens of programming languages in my life. Lately I've been using Java for about 90% of my work, with the other 10% split between C++ and various scripting languages. It feels like I'm out-of-practice with more languages than I ever learned!
I actually need to learn only enough Kotlin to write Gradle build scripts. I've been using Gradle's Groovy DSL (=domain-specific language) for many years, and Gradle recently announced that, going forward, their Kotlin DSL would be the default. But since Kotlin is a GPL (=general-purpose language), I may try writing apps in it as well.
Because Kotlin is very similar to both Java and Groovy, it doesn't quite feel like a new language to me.
5 notes · View notes
waterfaii · 1 year ago
Text
CodeBeauty
POINTERS introduction
#include <iostream> using namespace std; int main(){ /* int n = 5; cout << n << endl; output: 5 */
// is for a comment line and /**/ is for multiple line comments //I make it like this so you can paste it immediately into a compiler //variable - &address - *pointers. //START //just like variable, a pointer is a container as well, storing an address (a memory location) //n is a variable meaning that it is a container storing certain value //because it's a container, it has it's address inside the memory, a physical location //in order to check the location / which address :
/* int n = 5; cout << &n << endl; output: 006FFD64 */
//because it's not always fun to remember long address numbers, so we give them names - variables. we create a pointer to name an address and easily access it.
//POINTERS //how to create a pointer holding address of our n variable:
int n = 5; cout << &n << endl;int* ptr = &n; cout << ptr <<endl; //in order to indicate that you're creating a pointer, use * star (int*) //then give it a random name (ptr) //assign it (to ptr) the address of our n variable which is = &n (= assign)(& address)(n variable) cout << *ptr << endl; // a star * before the pointer's name will only reference the pointer and then find the VALUE of the ADDRESS //which is our original variable n //basically we're asking for the value 5, not the address 006FFD64 //CHANGE THE VALUE (5) stored in the pointer ptr address: *ptr = 10 ; //a star * means access the memory location and (=)assign a NEW (10) value //let's check if it's now 10 instead of 5 cout << *ptr <<endl; cout << n ; //both *ptr and n now show 10
//NOTES //pointer has to be of the SAME TYPE as the variable it is pointing to //int pointer to int variable, not int to float //char pointer to char variable, bool pointer to a bool variable, etc //you can't assign a value to a pointer, it has to point to an address //first create a (example) variable to store that variable's & address to the pointer //pointers are problem solvers and not the casual way it's used in these examples system("pause>0"); return 0; }
3 notes · View notes
hexaredecimal · 2 years ago
Text
“Any application that can be written in JavaScript, will eventually be written in JavaScript.” - Jeff Atwood
4 notes · View notes
stljedi · 2 years ago
Text
PROGRAMMING
Tumblr media
4 notes · View notes
david-goldrock · 10 months ago
Text
My biggest argument against god's existence is that cpp exists
7 notes · View notes
yazilimveteknoloji · 8 months ago
Text
0 notes
codingcorgi · 1 year ago
Text
Tumblr media Tumblr media
Days 47-50 of coding everyday for a year... It's been stressful
So I worked on with the image on top a game in Unity. I made a reverse murder mystery visual novel for Brackeys game jam. The bottom was me getting a feel for C++ still. Tbh I'm still kind of lost with it, but I'm trying. (it's just so different from C# in some ways). I'm also doing a small coding challenge every morning after I've had my coffee with C# since that's the language I'm going to base most of my career off of (I can do Java/Kotlin, and C++ but C# is special)
Here's a link to the game...
https://dragonlens.itch.io/beyond-the-infernal-door?fbclid=IwAR0pBC6WnHavtVRscNzITDQWXwVEiNJNUkJZhXPjLG9xCGTbdrpqzxPfFXg
The next few days I'll be working on more C++, and my .Net Maui project. I also might be practicing some coding interview questions/tests since the summer is coming up soon (I did make an impressive fizzbuzz with a twist)
10 notes · View notes
cybotechcampus · 8 months ago
Text
🌟 Ready to test your knowledge? Dive into our engaging online quiz at Cybotech! Whether you’re brushing up on your skills or just having fun, our quizzes cover a variety of topics to challenge you. Perfect for learners of all levels! 🧠💻
👉 Take the quiz now: https://cybotech.in/quiz
#Cybotech #OnlineQuiz #KnowledgeTest #Learning #TechSkills #Education #FunLearning #QuizTime #ChallengeYourself
0 notes
blogging244 · 9 months ago
Text
1 note · View note