Anonymous
Hi someone to help me with c++ advanced book
MᏫᎻᎯᎷᎷᎬᎠ
/rose_as_my_girlfriend
Enough Probably you'll get warned as a spam or something
Anonymous
Thanks
Anonymous
Thanks
naKID
English isn't a basis of intelligence I guess, besides it's just a typo error.
its engineeredListingHouses you see the Subject of One's and Zeros is a very old legacy, so amazingly engineeredListingHouses(Eng-Lis-H) is so simple, you work for 26 days, and for its cousin Grammer, Its just TooDeep, besides DeepFake is here, AI changes everything that you see(membrane) its just amazing. And everything is a "command". its what I can call a GeneralOutputLanguage. Most people miss use it.. alot
tyoc213
mmmm, Im having a linker error some undefined reference to `ma_zpotrs_gpu' and so on... I think I know the path of the lib, so I added some like export LD_LIBRARY_PATH=/home/tyoc213/miniconda3/envs/base/lib/:$LD_LIBRARY_PATH But compiling the C++ extension still throw the linker error... so Im thinking if that is not the correct way to place the path?
Anonymous
Someone asked about circle and rectangle C++ class yesterday? This isn't the same thing but... https://www.youtube.com/watch?v=D2a5fHX-Qrs
ken
Mm
#include <stdio.h> int main (){ printf ("Hi i am new a member of this group"); }
WHITE
#include <stdio.h> int main (){ printf ("Hi i am new a member of this group"); }
#include <iostream> int main() { std::cout << "Welcome\n"; return 0; }
Mm
#include <iostream> int main() { std::cout << "Welcome\n"; return 0; }
#include <iostream> using std::cout; int main (){ cout <<" Thank you!\nWHITE SHADOW "; return 0; }
Bottom G
white nigga
Anonymous
klimi
white nigga
You alright?
Bottom G
I am sick
Anonymous
Hello
Mimi
Hi
Anonymous
How to write multiplication table in c
Pavel
How to write multiplication table in c
You need two for loops one inside another, and print multiplication of indexes (i*j) of these loops on every iteration (plus some spaces or tabs for formatting it) And also print newline at each iteration of the outer loop
Anonymous
Pavel
Can u write it plz
You need to write it yourself. If you have some issues, you can show us your code and ask your questions (please use pastebin or hastebin to share the code)
Anonymous
Any compiler fully supporting c++ modules?
klimi
Any compiler fully supporting c++ modules?
idk what you mean, but gcc, msvc or clang works fine
Anonymous
idk what you mean, but gcc, msvc or clang works fine
Gcc wiki says it's not fully implemented
klimi
Gcc wiki says it's not fully implemented
can you post exact information?
Anonymous
can you post exact information?
https://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Modules.html
Kehinde Joyce
#include <iostream> int main() { std::cout<<"Hello Rita" ; }
Mimi
Guys
Mimi
Anyone can help me with nnls?
MᏫᎻᎯᎷᎷᎬᎠ
Any compiler fully supporting c++ modules?
I don't think so Check out MSVC
Anonymous
what is a good IDE for compiling and running C codes?
Anonymous
do they run code automatically? because i'm using VSCode and it doesn't run any COBOL or C codes. Just shows me nothing on output and terminal, the same
Igor🇺🇦
do they run code automatically? because i'm using VSCode and it doesn't run any COBOL or C codes. Just shows me nothing on output and terminal, the same
What does it mean "run code automatically"? It's a code editor. It edits code. It can send commands to your compiler to compile and to your OS to run compiled files. Similarly, same is true for IDEs
klimi
Anyone can help me with nnls?
Non-negative Least Squares?
Mimi
Yes
Anonymous
/freeprogrammingbooks
Anonymous
/notes
Anonymous
#freeprogrammingbooks
Anonymous
Hello, guys, how are you?
Anonymous
/notes
Anonymous
/get freeprogrammingbooks
Anonymous
#howtoask
Anonymous
#hownottoask
Anonymous
#ide
Anonymous
#cpp-vscode
Anonymous
Thanks Rose am glad to be here
Andrey
/notes
Andrey
/get rules
Kehinde Joyce
/notes
Jasur Fozilov 🐳
/get awesomeness
Pavel
#include <iostream> #include <algorithm> #include <functional> int main() { [a = std::ref(std::cout << "hello")]{a.get() << " worldn\";}(); }
Pavel
dafaq again, that was a link to a message from this group (well, I can say that Rose punished me because I said that she has broken the note)
MᏫᎻᎯᎷᎷᎬᎠ
Yes there is :P
MᏫᎻᎯᎷᎷᎬᎠ
I just hope bjarne publish a 5th edition of his book
Andrew
what about adding vocal chat to this chat ??
Alex
For what?
for doing home assignment I guess
Bredo ☺️
Hello
Anonymous
For what?
Maybe they want to hear foreign accents... :/
Anonymous
Hello Bredo, how's it going?
Pavel
Yeah.... Sorry
Why? Thanks
klimi
Why? Thanks
I made the blacklist.... And idk how to code it well
klimi
I just did wildcard on t.me
Anonymous
Who wants to write some code! // https://codegolf.stackexchange.com/questions/218260/write-a-deadfish-interpreter #include <stdio.h> #include <ctype.h> int main(int argc, char *argv[]) { for(int idx = 1; idx < argc; idx++) { char *code = argv[idx], *c = code, *o = " -> "; int acc = 0; while(*code) { switch(tolower(*code++)) { case 'i': acc++; break; case 'd': acc--; break; case 's': acc *= acc; break; case 'o': printf("%s%s%d", c, o, acc); c = ""; o = ","; break; default: /* nothing */ ; }; if(acc == -1 || acc == 256) acc = 0; } printf("\n"); } return 0; }
Programmer
#include <iostream> #include <algorithm> #include <functional> int main() { [a = std::ref(std::cout << "hello")]{a.get() << " worldn\";}(); }
lambda expression... #include <iostream> using namespace std; int main() { [a = ref(cout << "hello")] { a.get() << " world\n"; }(); cin.get(); }
Omkar77
Lol
MRT
hellow guys
MRT
i have problem in c++ with while ! i create header file and custom class for handle handshake data transfer , and i get data from socket with this