431 subscribers
154 photos
10 videos
25 files
66 links
For Any Information @TechnerdGuy
πŸ†˜ Pre-Engineering Students Struggling with C++? πŸ˜₯ Fear not! πŸ’ͺ This channel is your coding lifesaver! πŸš‘ Learn the basics, ace your course! πŸ’―
Download Telegram
C++ Basics pinned Β«Can you suggest a difficult topic from chapter 2? I'll take the time to clarify it.Β»
Updated :

πŸ—“οΈ Today at 3:00 πŸ•’ Class! πŸ“š

We're diving into:
  Chapter 2
  πŸ’» part :-2 πŸš€
C++ Basics pinned Β«Updated : πŸ—“οΈ Today at 3:00 πŸ•’ Class! πŸ“š We're diving into:   Chapter 2   πŸ’» part :-2 πŸš€Β»
The reason I updated the time is that my phone battery is low , and plus, I don't have a charger with me πŸ˜”.
πŸ‘1
Bezu temari alayehum beka 3:15 enjemeralen teyake kalchu azegaju...
πŸ‘2
Are you ready............
πŸ‘7πŸ”₯3
Setanebut confuse yadergachun negr meteyk🀚 techelalchu ene esk ezi teyak prepare ladergπŸ˜„πŸ€“πŸ“š
πŸ™3πŸ‘2
Gelts nw ... .....
πŸ‘4
Zenabuβ›ˆπŸ₯Ά,btw des yelal am chilling πŸ˜„πŸ˜„
😁11
Quiz
What's the output of this code and if you got error fix it and explain why it occur?

#include <iostream>
using namespace std;


void add();

int main() {
    int age = 21;
    add();
    return 0;
}

void add() {
    cout << "Age: " << age << endl;
}
Just codun copy aderkut ena run be maderg fix adergut...
πŸ‘1
Answer
πŸ‘1
Forwarded from Dagi
#include <iostream>
using namespace std;

int age = 21;

void add() {
cout << "Age: " << age << endl;
}

int main() {
add();
return 0;
}
Like this
πŸ‘4πŸ€”2πŸ‘1
Error variable age local slehone nebr enbe yemlew
This one also possible



#include <iostream>
using namespace std;
int age = 21;

void add();

int main() {
     add();
    return 0;
}

void add() {
    cout << "Age: " << age << endl;
}

Output :21
I think gelts nw selezi enketel adel......
πŸ”₯3😐2πŸ—Ώ2πŸ₯΄1
C++ Basics
I think gelts nw selezi enketel adel......
Fetachun atekeskesuπŸ˜” yalegebachun negr Kale teykugn.....
πŸ€·β€β™€3😁1
Quiz:

Ehen display meyaderg codu tsafu.....
Ouput: \ (backslash symbol display adergut)
Forwarded from Dagi