Mark
i cba to watch the vid ;D
Ибраги́м
Now messing C++ made easy
Ибраги́м
i cba to watch the vid ;D
[[you::your_useless_attr]] void fun() { }
Mark
hmm
Ибраги́м
hmm
That's a standard way to do it since C++17. instead of attribute((always_inline))
Mark
oic
Mark
thanks
Mark
it's nicer
Ибраги́м
it's nicer
Very nicer. Enjoy the video
Frank
I agree the rules
BinaryByter
good for you
Hayk
lol
Rounak
Anyone knows Dijkstra algorithm
Rounak
I am having some doubt
Rounak
No one😱😱😱
Anonymous
Anyone knows Dijkstra algorithm
http://cprog123.blogspot.in/2018/01/bellman-ford-algorithm-bellman-ford.html
Rounak
Ok rose..but who called you?how u read the normal text and replied 🙄
Mihail
And has commands
Mihail
So like why not
Mihail
Also it's not like what she said isn't true
Rounak
If you write anything with'/' or # then bot can identify
Mihail
Or anything actually
Rounak
But how he decode the normal text without '/'?
Mihail
Also someone used a note
Mihail
Anyways OT
Mihail
So stop
Rounak
Ok
Ritu Raj
If anybody have Pdf of C++ then plz send me.
Ritu Raj
I am leaning it from beginning
Ritu Raj
Ohk
Anonymous
Ritu Raj
Arabic or English books?
English.... But sent me it personally...
Ανδρέας 🇮🇹
can anyone teach me to write code for sin and cos pattern
just translate these summations to code
BinaryByter
lol someone's into tailor approximations
Ανδρέας 🇮🇹
taylor swift <<< Taylor series
BinaryByter
just translate these summations to code
i'd advise capping them at n=16 at mosh
Ανδρέας 🇮🇹
BinaryByter
we dont want infinite loops, do we? :P
Anonymous
Hi
Anonymous
I just read the pinned message. Do I get a cookie?
Anonymous
Please not a tracking cooky
- Raymond
Why does this not work?
- Raymond
int MultiplicationTable [2][2] = {{(2*3),(2*4)},{(2*5),(2*6)} };
- Raymond
Can you not put calculations within arrays?
Ariana
it works for me What was the error that you got
BinaryByter
THINK BEFORE YOU ASK
v1nd3_x
Hi im new here
v1nd3_x
Dima
hey I am malloc
v1nd3_x
👍
- Raymond
it works for me What was the error that you got
There's no error but I get this when I run it 0x7ec3c0489400 instead of 6 8 10 12
- Raymond
Give us the error
There's no error but I get this when I run it 0x7ec3c0489400 instead of 6 8 10 12
Mat
What?
Mat
The verb lacks
- Raymond
This is the entire thing
- Raymond
// Example program #include <iostream> #include <string> using namespace std; int main() { int MultiplicationTable [2][2] = {{(2*3),(2*4)},{(2*5),(2*6)} }; cout << MultiplicationTable << endl; return 0; }
- Raymond
when I run it I get 0x7ec3c0489400 instead of 6 8 10 12
olli
// Example program #include <iostream> #include <string> using namespace std; int main() { int MultiplicationTable [2][2] = {{(2*3),(2*4)},{(2*5),(2*6)} }; cout << MultiplicationTable << endl; return 0; }
you cannot print a whole array at once, you need to print the individual elements int MultiplicationTable[2][2] = {{(2 * 3), (2 * 4)}, {(2 * 5), (2 * 6)}}; for (const auto &r : MultiplicationTable) for (const auto &e : r) std::cout << e << ' '; prints 6 8 10 12
- Raymond
Ok let me try the way I know it then and I'll ask if I need anything. Thank you
Anonymous
Hij
Anonymous
Wanna learn C programming language
Mihail
(For every element in r)
Mihail
Is what it does
Mihail
Afaik
Mihail
You can use a normal for too