Igor🇺🇦
I don't use Java and Kotlin. But as far as I know it's currently the rising language for android programming, and one of the most loved languages. And the user is mostly interested in android programming
Do you know how many languages rise and fall all the time? That's doesn't mean people with little experience in programming should learn them. With more experience you can learn new languages much easier. Than your can chose your any language that suits your needs
Igor🇺🇦
But suggesting some totally new language to a person that is completely new to programing will just confuse a person
Dima
Of course c++ without libraries not enough helpful
you can write everything yourself without these libraries
Nikita
Haha ive thought that smbdy will write something like that
SAMUEL
Good to be here
SAMUEL
Love all the conversation going on
SAMUEL
Please, which site pays, I want to make money online but don't have assess to any useful information, thanks for any suggestions
hyp3rbor3ax
How can I split this class in a .h and .cpp file? I tried to cut everything after public{} into a .cpp-file with an additional #include "arraysort.h", but I only get error messages :(
dhananjay
,
Igor🇺🇦
How can I split this class in a .h and .cpp file? I tried to cut everything after public{} into a .cpp-file with an additional #include "arraysort.h", but I only get error messages :(
You're using templates that require implementation to be known in the header or you can explicitly instantiate all template instances. More in depth information is here https://stackoverflow.com/questions/495021/why-can-templates-only-be-implemented-in-the-header-file
hyp3rbor3ax
Ah, so in this case it's already a complete class?
hyp3rbor3ax
No need for .h and .cpp?
hyp3rbor3ax
Thanks :)
Igor🇺🇦
Ah, so in this case it's already a complete class?
It's always a complete class. You split files to header and cpp for better separation between interface and implementation. The less other class know about each others the better.
Anonymous
Is that as this?
hyp3rbor3ax
It's always a complete class. You split files to header and cpp for better separation between interface and implementation. The less other class know about each others the better.
Now I tried out of curiosity the tpp recommendation: g++ main.cpp arraysort.h arraysort.tpp -o aufgabe02 /usr/bin/ld:arraysort.tpp: file format not recognized; treating as linker script
hyp3rbor3ax
hyp3rbor3ax
hyp3rbor3ax
Igor🇺🇦
Are sure it should be tpp ,and not cpp ?
hyp3rbor3ax
Dima
You better write class definition in header and class implementation in cpp file
Dima
But keep template methods in h
Kevin
Thanks.
aymuos
What is the address of an element a[i][j][k] for an 3Darray starting adress A and array of size a[m][n][p]
Zorrito
Is anyone here familiar with blackjack?
Zorrito
Yes. It's also called 21. It's common at casinos.
Zorrito
I'm writing a program to test/adapt my strategy. It plays every hand automatically, but it applies the strategy I tell it to use, so I can test, say, 10,000 hands in just a few seconds or minutes.
Zorrito
The problem is that it seems to want to hit when it's supposed to stand.
Zorrito
If anyone can help, I'll PM the file to you.
Ritesh
Is there any trick to open facebook without password or hack fb
Jussi
Please.
_̸̡͝͝This
Is there any trick to open facebook without password or hack fb
Just Google Manhattan Signature, Thank me later.
Anonymous
Hi guys, I'm having problem understanding arrays in c++, Pls can someone explain?
Anonymous
Thanks
☬ੴ Bassi
Dima
lmao fb hacking
Gushmazuko
Hello
Gushmazuko
I want download a file and transfer information from this file to variable. How to realise it in C?
Dima
Stap advertising
☬ੴ Bassi
lmao fb hacking
its te stupid questions get stupid prizes approuch
Dima
foobar hacking
Dima
☬ੴ Bassi
dima i am no hacker :P
Dima
I mean fb =foobar
Dima
lul
Dima
once I hacked my own game engine
Dima
idk why
Dima
☬ੴ Bassi
did you publish your own 0 day notice to?
Dima
zero day notice?
☬ੴ Bassi
when some one finds a vulnerabilty in a app they normally give the vendor 0 day notice saying if you dont fix this in 10 months or so i will publish it
Anonymous
Hi guys .. I'm new to This . . So I'm looking for someone to mentor me
Anonymous
Hi guys .. I'm new to This . . So I'm looking for someone to mentor me
https://www.youtube.com/user/thenewboston he can help you maybe
Anonymous
Thanks Marie...I'll do that
Anonymous
What is *a or **a
Anonymous
What is *a or **a
http://www.cplusplus.com/forum/beginner/142340/
Georgy
thank you :)
Gushmazuko
How to get data from a Internet file into a char? With WinAPI in pure C?
Igor🇺🇦
How to get data from a Internet file into a char? With WinAPI in pure C?
Did you read documentation? https://msdn.microsoft.com/en-us/library/windows/desktop/ms740506(v=vs.85).aspx
Onur
I have a simple code: std::pair<int, int> p(1, 2); auto[x, y] = p; std::cout << x << " " << y << '\n'; it says "expected unqualified-id before '[' token" in the second line.
Onur
What is wrong here?
Onur
my gcc is version 5.4 btw is it c++17 complete?
Daniele°
My gcc is 8.1
Onur
Upgrade your gcc
I am looking gcc8 for ubuntu 16.04 right now
Onur
is gcc-8 stable?
Sujeet Kumar
I am facing some problems in making program of data structures in c, can anyone suggest me a book for data structures in c
Alignant
Try windows ^_^
Mikhail
https://gcc.gnu.org/projects/cxx-status.html
Onur
Yes
Okay trying to install right now