Sanjay
Alright ...
Zorrito
Alright ...
To be fair, you wouldn't go to a Subway for tacos.
-
Oh mannnnn, how can you guys be so good n Coding 😭
Anonymous
we are newbies xd
many
Oh mannnnn, how can you guys be so good n Coding 😭
Stallman and Linus are hiding somewhere in this group
-
Stallman? Linus? What do you mean? Is that people's name?
Zorrito
Oh mannnnn, how can you guys be so good n Coding 😭
I'm fairly new (only learned C++ some time late last year).
Zorrito
Omfg I just realized I have to inform the kernel about other variables I'm using 😆 Let's see if my code works now.
Nicolas
Thank you. Marie!
Nicolas
## Welcome We're very glad to welcome you to join the International C/C++ Group. You can invite others by https://t.me/programminginc ## Topics In this group, any topics related to C/C++, Assembly, Debugging, and Hacking are welcomed. For serval reasons, it's appreciated that communicating with each other here by English; including but not limited to: * English is one of the most widely used and accepted language in this world, and most programmers could read English, since programmings languages are often based on English. * Communicating through English helps others understanding your posts better. * Your questions might also help or enlight others, and thus communicating in English might help to maximize global benifits in this aspect. You may also noticed that Pornography, Spam, Abuse, and Religion or Ideological topics are strictly forbidden in this group. ## Questions Questions related to the topics are welcomed. However, this is not a place to get the answer to your homework, hence DO NOT ask others to do the homework on behalf of you yourself. Life is short. For saving time and helping you to find more potential answers to your question, asking questions in a smart way is indispensable. You might be happy to have a look of this instruction: * [English](http://www.catb.org/esr/faqs/smart-questions.html) * [Translations](http://www.catb.org/esr/faqs/smart-questions.html#translations) BTW, when you are posting long long code snippets for asking questions, please kindly taking pastebins into consideration. Some famous pastebins are listed here: * [GitHub Gist](https://gist.github.com) * [Ubuntu Paste](https://paste.ubuntu.com/) ## Sources and Knowledge Check Allen's post: https://t.me/programminginc/6504 ## Reports If any Pornography, Spam, Abuse, and Religion or Ideological topics are found, please kindly pin the admins to help us for the purification of the communication environment in the group.
I got it well noted
Nicolas
Hello c/c++ progrmmer
Dima
henlo frend
Nicolas
Can we do something Better using c/c++
Mikhail
May be better world?
Anonymous
lol
Anonymous
Any ebooks for learning c++
Anonymous
I have a doubt can i learn c++ directly without learning C
Mikhail
Any ebooks for learning c++
Get in shared files in this group.
Anonymous
Dima
Dima
you can try c#
Dima
C#
Dima
lol
Dima
C-sharp
Dima
rekt
Nicolas
better compared to?
Compared to paid Piper.
kky
got
Oluwaseyi
Anyone with assembly language knowledge... Please I need help
Anonymous
Chat cleared
Anonymous
Do that in a phyton chat
Anonymous
why?
Anonymous
Try to keep this group to C/C++
Anonymous
it was just that...if someone wants to learn
Anonymous
ok as you wish sir
Ariana
Assembly instructions are quite intuitive
Dima
http://i.imgur.com/mmhM7.jpg
Dima
always gets me
Dima
ahahahhaah
Anonymous
plz dont post anything un related
Anonymous
only post relates to c++
Dima
you wanna say c/c++ isnt related to asm -.-
Dima
i can write asm code in cpp
Dima
well I got it nvm
Dima
this is related meme
Anonymous
I know 8 bit Assembly
Anonymous
i have worked on 8086,8085 and 8051 using assembly
Dima
mmmmm hardcore
Anonymous
plz dont post anything un related
Slight Off-Topic is fine but we don't allow promotions .. that too for something not related to C/C++
Anonymous
i was not promoting
Anonymous
i was just asking if somebody wants to learn
Anonymous
Okay..
Onur
std::find_if(s.rbegin(), s.rend(), [](auto& c) { return !std::isspace(c); }).base() What does 'base()' do here? Edit: I figured out
Anonymous
Anonymous
Anonymous
Compared to paid Piper.
Sure, go ahead xD
Aadarshhh
Aadarshhh
can someone tell me how?
Aadarshhh
plz explain last and second last line
Anonymous
plz explain last and second last line
Do you know variable type ?
Aadarshhh
yes
Aadarshhh
int b = a * 5/2; //incorrect (can you think how?)
Aadarshhh
why this is incorrect
Anonymous
int a, b; long c; c = a + b //can we operate this ?
Aadarshhh
that means only similar data types can be added?
Aadarshhh
and output can be stored in same data types yes?
Dima
this may compile and it will work with small values
Dima
but if large values this will break
Dima
your example is correct, but long a = 10, b = 15; int c; c = a + b; this is where it will break with large values
Anonymous
c = (long) (a+b) No? C can :)
Anonymous
for(;;)-how is this an infinite loop?
Aadarshhh
#include<iostream> using namespace std; main() { long a=3.4, b=6.8; int c; c = a + b ; cout << c; }