Dima
I know, right???
I know left
Anonymous
I know left
The stupidest joke I've ever seen from you
Alion🦁
I know left
😂🤦
LORD
Any method to transfer data from google drive to onedrive . I have also google it but no such tool found for this. I see that their is site name multcloud but it is not good for robots thinh
Dima
Woah, Rose has got a new profile picture
Anonymous
Yep
Anonymous
No boobs anymore
.
Now rose has left all that stuffs she is a good girl now
M3dular
Hello guys am am a real noob and ir eally wanna get started with lowlevel programming really bad Is it advisable to learn c before c++ or c++ alone coming from zero lowlevel background
Alex
what do you mean lowlevel programming? generally speaking, c++ is not lowlevel language
Youssef
what do you mean lowlevel programming? generally speaking, c++ is not lowlevel language
Low-level language is a language that is closer to hardware such as assembly language and machine code. C++ is a high-level language.
Wisenky
What else to do to import python libs ?
Wisenky
Wisenky
Wisenky
Wisenky
Alex
probably add libraries
Dima
how ?
-L flag, you need to link python libraries too
Wisenky
Anonymous
Hello...
Raph
can anyone create for me an array to calculate and grade marks
Hermann
is possible increment a pointer and free it? i get seg fault
Hermann
no. use another variable for address+1
but can i add another value in my pointer?
Alex
but can i add another value in my pointer?
ptr1 = malloc.. ptr2 = ptr1 ++ptr2; ptr2 += 5.. etc.. free(ptr1)
Hermann
i say like that
Alex
you should give address to free you obtained from malloc. this is wrong pointer=++pointer; also there is no point in assignment from increment
Alex
this is potential segfault too while(pointer[i]!='\0') { you don`t have zero in your malloc memory
Hermann
so pointer can get only value 1
Alex
don`t understand
Alex
Anonymous
better would be pointer += 1
This is more readable
Anonymous
But doesn't matter honestly
crt
when in doubt, pointer = (void*)(((int)pointer) + 1)
Hermann
don`t understand
i increment only pointer2 because pointer2=pointer
Alex
ok
Hermann
but i would add value 2, so... i cant this, right?
Alex
you can
Ajay
Is it possible to set some flags during compilation in cpp and making it default? I don't prefer writing those flags again and again. Just a simple compilation like g++ source.cpp should work for that.
Alex
you can create Makefile, simple shell script or alias in shell
Anonymous
Or CMake
Anonymous
Or Python scripts
Yakov
Pymtohm bad cpp good
Anonymous
Pymtohm bad cpp good
Purple bad, Green good
Dima
rainbow good, lgbt good
Yakov
Hermann
you can
okk thanksss
Raph
what's this group for anyway?
Anonymous
what's this group for anyway?
Is it so hard to read rules?
Raph
I read it but I think its too harsh dont you think?
Anonymous
Yes
/warn read rules
Marián
is there any clean way to scanf whitespace-splitted array?
Raph
Why not, how are we helping other?
Marián
like you got int[3] and '20 10 6' and u want scanf it
Marián
without repeating &arr[0], &arr[1], it should by dynamic
Marián
like u create bigger array[1000] and limit it with some variable as pointer to only some size
Raph
like you got int[3] and '20 10 6' and u want scanf it
Thats simple man are you sure you dont want to google it?
Marián
i asked for cleanest solution that you can make
Marián
if it's inline and whitespace split
Marián
i can make it work by myself lol but i just can't think of any clean one-liner or something
Marián
tokenize it
yeah i can do that
Dima
without scanf
Marián
but isn't here any 'dynamic' way to do it with something like scanf?
Hermann
but if i have mpzt array, how can i export it in uint8 pointer?
Dima
scanf is not safe by the way