Ανδρέας 🇮🇹
Saurabh
Is android app is also called online portal ?
Anonymous
this is the dereferentiation of one*
Well I think he's declaring
Anonymous
https://t.me/hiredeveloper
BinaryByter
int **a; is different to **a;
🎀
😁
Anonymous
😁
Brooo😂😂
🎀
Im human chale
Anonymous
The killers are all coming through😀
Anonymous
Yh yh😂😂😂😂
Anonymous
Hi everyone
Anonymous
Anonymous
Anonymous
As there is byte in java is there anything like this in c++ which can store integer with only 1 byte of storage
BinaryByter
char
Anonymous
char
But it can't store it in integer format. Manipulation of that would be hard
BinaryByter
char a = 10;
BinaryByter
where is the problem?
Anonymous
where is the problem?
What if I have to add 10 to it
Anonymous
char a = 10;
Maybe I thinks it's char a = '10'.
BinaryByter
Prometheus
What if I have to add 10 to it
It's been years but doesn't incrementing a character like that just move it along so many spots through the ascii table? I thought numbers we're stored in numerical order on there.
BinaryByter
its the terminal that renders your chars that renders them according to the ascii table
BinaryByter
std::cout just puts the chars into the stdout
BinaryByter
the overload for ints converts the number into ascii-table digits though
Prometheus
a char isn't concerned about the ascii table
It's been like 10 years so I'm a little foggy lol
BinaryByter
xD
BinaryByter
i give you a break
Prometheus
Looked it up. So adding (using +) to the char converts the expression to int and then you'd just have to cast it back to a char, I guess.
BinaryByter
no
Prometheus
i give you a break
Thanks, you're so nice :P
BinaryByter
chars are nothing but numbers
BinaryByter
so are ints
BinaryByter
so are floats
BinaryByter
(except floats are handled differently internally)
BinaryByter
chars are nothing but a number
BinaryByter
char a = 2; a += 3; a == 5
Prometheus
Numbers are dumb. This is why we have calculators.
Prometheus
He should just tell his teacher he'll buy one of those $1 calculators and call it a day.
BinaryByter
xD
Ram
Can anyone send me TCS materials
BinaryByter
what even is TCS?
Ram
Study materials for TCS offcampus
BinaryByter
what the fuck is TCS?
Anonymous
what the fuck is TCS?
Its Indian Thing 🙂
Prometheus
what the fuck is TCS?
It's TCS offcampus. He said it right there in his post :P
Anonymous
Prometheus
Its Indian Thing 🙂
Oh, you'll probably find more help in the camp of last hope
BinaryByter
Anonymous
Study materials for TCS offcampus
This Is A Discussion Group
Over-engineering
Study materials for TCS offcampus
I'm placed through Codevita, you can inbox me
Anonymous
int **a; is different to **a;
True, I thought he meant T **a. Well then yes it's deferentiation.
Mihail
True, I thought he meant T **a. Well then yes it's deferentiation.
Idk where that T came from, but no such thing in his message
Mihail
T stands for type.
Ik but he clearly isn't templating or anything
Anonymous
Cpp
klimi
well not exactly
klimi
https://stackoverflow.com/questions/1788923/parameter-vs-argument
klimi
Cpp
#cpp
klimi
void Foo(int i, float f) { // Do things } void Bar() { int anInt = 1; Foo(anInt, 2.0); }
klimi
void Foo(int i, float f) { // Do things } void Bar() { int anInt = 1; Foo(anInt, 2.0); }
Here i and f are the parameters, and anInt and 2.0 are the arguments.
Anonymous
Code for over exam
klimi
Code for over exam
sure, what year?
Anonymous
klimi
mhm and school?
klimi
i mean country
Anonymous
Diploma India Maharashtra
klimi
mhm
klimi
@roxifas do you have code for last year exams?
Anonymous
Yes
klimi
if you define your function its parameter