𝕵𝖔𝖘𝖚𝖊
😂😂😂😂😂
kappa
Hello folks, in the code: 3rd print is getting printed and scanf is not giving option to enter. Please help. https://pastebin.com/6f6MbUGw
Remove the space in the second scanf Scanf("%f",&pP->price) and same in next if you want to add more than three inputs
𝕵𝖔𝖘𝖚𝖊
#awesomeness
𝕵𝖔𝖘𝖚𝖊
wtf!?
𝕵𝖔𝖘𝖚𝖊
/saved
𝕵𝖔𝖘𝖚𝖊
#noendl
𝕵𝖔𝖘𝖚𝖊
#reference-the-standard
𝕵𝖔𝖘𝖚𝖊
#ossu
𝕵𝖔𝖘𝖚𝖊
#findprojects
kappa
Best app for c++ compilition on Android??
kappa
For compiling android
Anonymous
Yeah but why on android
kappa
When I m out
Anonymous
It's a very painful experience
kappa
App name
S.
Best app for c++ compilition on Android??
SSH linking to a VPS should work
kappa
SSH client??
kappa
Putty
S.
yes
S.
Though anyway Termux can install clang too
S.
( and vim, emacs etc
kappa
Putty
Are there any risks involved
S.
what do you mean by “risks"
S.
For practice, a local clang/clang++ is fine. For serious Android development, just no.
££*KHB*££
#notename
Light
#noendl
MᏫᎻᎯᎷᎷᎬᎠ
Guys If I have: struct base{ virtual ~base(){} }; struct derive : base{}; And I have the following function: template<typename T> void foo(T* t){/*some code*/} so In main: I called foo first with an instance of base* foo(new base); Now, one of the foo instances is: void foo(base* t) Call this instance A. Again I called foo again with instance of derive*: foo(new derive); Now, the question is: Does the second call of foo refers to a new instance of foo function like: void foo(derive* t){/***/} or it just refers to the first instance A and we have a runtime polymorphism?!!
klimi
Welcome
MᏫᎻᎯᎷᎷᎬᎠ
Got it
MᏫᎻᎯᎷᎷᎬᎠ
Thanks
Ming
Guys i was solving this problem of largest contiguous sub array sum. And my friend asked this question, you have to select an integer X from the array A then square it and then return the sum of the subarray that has maximum sum over all subarrays of the resultant array. Sum of subarrays is the sum of all integers in subarray. How to tackle this problem
TuF
ANYONE HERE WHO IS EXPERT IN C OR ANY LANGUAGE
klimi
TuF
I need help
Dima
It seems like your name notes that you are the “Pro” so what can be your problem?
Dima
Lol.
TuF
Im pro but i need expert actually 😋
Dima
Yeah sure
TuF
There a test by tcs And i need someone who can do one code
Dima
Wow such pro. would be nice if you read the rules. it says no assignments lol
Dima
LAME
Mihail
There a test by tcs And i need someone who can do one code
if you really were "pro" why don't you do it yourself?
I_Interface
if you really were "pro" why don't you do it yourself?
"pro" not in this area they say 😂😂
Vladimir
*note: never take 'pro' username on the net*
Dima
Francisco
Whoever sais is 'pro' in C/C++, is not 'pro' at all. Even the more experienced people don't consider them as 'pro'
Vladimir
Actually he did not specified what area he is a pro in. May be he is professional photographer?
I_Interface
yeah he must've meant pro at not knowing c/c++
i'm sure what he even didn't try to google it for stackoverflow or youtube
Varshan
Why so much discussion about the pro? Some people use it for fun because they don’t actually know about it. Just pretends
TuF
Im Pro in comedy 😂
TuF
Actually yesterday i changed my name
TuF
Im Pro in comedy 😂
See u i made a day
Liam
I'm Pro in tragedy.
TuF
See how*
Liam
Actually everyday in my life is a tragedy.
Anonymous
TuF
3Aug..?
Tomorrow
TuF
3Aug..?
3rd aug is nqt
Mihail
.
read the rules
Dima
Let’s cut it fast :)
Anonymous
#include <stdio.h> void main() { int x = 97; int y = sizeof(x++); printf("x is %d", x); } The output is : 97(why?)