neha raghuwanshi
Plz helpe to learn computer lang....
Tokin
yes, of course.
Do you use multiple compilers to compile your source code? .. I've heard it's quite a common practice.. But never figured out why.. The only answer I heard is.. Just to see if it compiles
olli
Do you use multiple compilers to compile your source code? .. I've heard it's quite a common practice.. But never figured out why.. The only answer I heard is.. Just to see if it compiles
sometimes if I suspect some behavior is weird and I want to see how other compilers behave. I like reading the c and cpp standard because it helps to understand the language better (although it's hard to read)
Tokin
Super hard mate.. Especially for those who don't come from academia background... Even that K & R book.. 😅
Tokin
Drafts?
olli
by the way, where are you getting latest C++ standard docs?
unfortunately you can only get drafts for free, I like this one http://eel.is/c++draft/ (you can link to every section of the document)
Pavel
Do you use multiple compilers to compile your source code? .. I've heard it's quite a common practice.. But never figured out why.. The only answer I heard is.. Just to see if it compiles
I test my code on gcc and msvc often because my goal that my app should work well on both of these I try to test often because some things can compile on gcc but not compile on msvc and vice versa.
Pavel
by the way, what the reason that only drafts are available for free?
Tokin
Hehe
Tokin
Why would anyone care about the drafts.. Of the original standards were free
Tokin
If*
Tokin
What do you guys think about Intel C++ compiler
Pavel
Why would anyone care about the drafts.. Of the original standards were free
what is the point of caring about the drafts if it's all already in the standard?
Tokin
Not much
Tokin
Since most ppl can't afford to buy the standard.. That's why they compromise and settle down with the drafts I think..
Tokin
But I think the clients or the customers pay for the standards.. Or so I've heard..
olli
by the way, what the reason that only drafts are available for free?
The standard is open in terms of "not behind closed doors" but not "open" in terms of FOSS. Afaik ISO owns the rights to the published standard document and they do sell it. The draft (non iso publication) can be downloaded or compiled for free. https://github.com/cplusplus/draft
Anonymous
Tokin
Isn't it proprietary?
Student privilege free :P
Tokin
For a year atleast
Tokin
It's quite expensive tho..
Tokin
But there are pirated ones.. Available I think
Anonymous
Student privilege free :P
Hm, I'm an Intel employee and I'm a student Does it mean that when I download the compiler it will twice better than just a student version?😂
Tokin
I mean for educational purposes it's free for students.. 😂
Anonymous
But there are pirated ones.. Available I think
Noooooooo, forget about it, naughty criminal
Tokin
Lol if you are an Intel employee.. No worries for you I suppose :P
Tokin
Noooooooo, forget about it, naughty criminal
Lol.. I believe they don't really care about.. individuals much.. Just huge corporations.. Who won't mind spending that much for a compiler..
Tokin
I'd pay for it.. Tho
Tokin
Btw @unterumarmung how'd ya got to be an intern at Intel?
Anonymous
Btw @unterumarmung how'd ya got to be an intern at Intel?
Applied.. Got an interview.. Got an offer
Tokin
Smooth
Tokin
Any shady secrets to share while working as an intern at Intel?
Tokin
:D
..
Hi
Anonymous
Any shady secrets to share while working as an intern at Intel?
No :) Even if I knew something I couldn't share it :D
Anonymous
What do you guys think about Intel C++ compiler
Unfortunately it doesn't even support C++17 now
Sameer
How to write the recursive function in proper way.
Tokin
No :) Even if I knew something I couldn't share it :D
That's how I know.. I can trust Intel.. They hire loyal guys..
Anonymous
That's how I know.. I can trust Intel.. They hire loyal guys..
I can recommend you to watch an interview with Raja Koduri https://youtu.be/a4DzQ55JvYI It's former AMD's and Apple's graphics card team lead You can learn from the interview what current Intel's goals are
Anonymous
It's in Russian but has English subs
Tokin
Alright
Anonymous
or am I missing something?
Anonymous
I think it does
I meant it doesn't support C++17 fully
Anonymous
oh, gotcha
Anonymous
I think it does
But it almost done! https://software.intel.com/content/www/us/en/develop/articles/c17-features-supported-by-intel-c-compiler.html
Tokin
But why is modern necessarily good?
Tokin
Also if only they accepted IA64 arch.. Instead of x86.. Life would have been quite different
Anonymous
But why is modern necessarily good?
Until it hasn't been bad, it's good
Anonymous
Newer C++ standards make like easier
Anonymous
Why would anyone care about the drafts.. Of the original standards were free
the final draft and the published standard have very few differences, if any. you can see that when the first draft for the next standard comes up
Tokin
the final draft and the published standard have very few differences, if any. you can see that when the first draft for the next standard comes up
Unless I'm building the compiler .. It could wait... Assuming it would take quite some time for the compilers to support.. The new standards..
Mp
anyone knows brute force alogrithm
Mp
?
వ్లాదమిర్ పుతిన్
anyone knows brute force alogrithm
trying every key combination?
Mp
trying every key combination?
the question says find o()efficiency for brute force
Anonymous
Unless I'm building the compiler .. It could wait... Assuming it would take quite some time for the compilers to support.. The new standards..
"Why would anyone care about the drafts if the original standards were free" i'm saying that the original standard is already free in the form of draft standard. you can verify how close the final draft is to the original standard by just comparing the first C++20 draft and the final C++17 draft.
వ్లాదమిర్ పుతిన్
Tokin
Fair
Anonymous
Hello guys
Jaen
Greetings, can I use gtk without MSYS2 on Windows?
Tokin
Why not use win32?
Jaen
Just use Qt
I'm not sure if it can be usted with c
Jaen
Why not use win32?
I'm going to read about it, I don't much about windows
Anonymous
What is ASCII table
Tokin
Although Microsoft for some reasons have been promoting C++.. Although most of the examples you'll find will be C... So don't worry
Tokin
On msdn
Alex
how to set maximum version package in CMake? I need Cmake to use libssl version from 1.0.0 to 1.0.2, but not 1.1.0(cause they changed API)
Anonymous
Moved the whole discussion to offtop chat
@unchanted
Gevorg
Hi! Guys I need a help connected with c++ , I need to sort array of characters and numbers, in output I need to receive numbers after characters. Exemple INPUT: a 1 2 r 6 OUTPUT; 1 2 6 a r Without using function, can someone help me?
Indolent
void func1(int *data1)