Chinepun💛
Thank u. It is working now
Andrew
btw you should use vs code extension to debug rather than use terminal is more efficient
Chinepun💛
How do I use it?
Andrew
How do I use it?
https://www.youtube.com/watch?v=X2tM21nmzfk
Chinepun💛
Thank u
Mr.
Hey
Anonymous
hi
Mr.
What's up
Mr.
Ohk
Anonymous
👌
Rashu
datam:data
Rashu
What happened here?
Rashu
It's mean data value transfer to datam?
Dark
does anyone know how to get the full resource size?
Anonymous
Hi I am new here
Alex
Hi I am new here
Welcome! how are you doing?
Anonymous
❤️
Alex
🤝
Anonymous
Welcome! how are you doing?
I am fine and how about you
Alex
good, thank you
Anonymous
Welcome dear
Dark
does anyone know how to get the full resource size?
because i have tried SizeofResource(NULL, res); and i just get 4 bytes not the full size
V01D
Bye scammer!
V01D
Carders make me so mad.
Renan
pendemic, lol
Do programmers work during a pandemic? 🤔
V01D
Do programmers work during a pandemic? 🤔
No, we just sit on a chair and stare out the window watching the virus fly by, like doing a race with raindrops on the window.
Garvine
Hey How can you merger two arrays into single array in C++ without duplicate
Vlad
Cuz resulting array shall be sizeof(arr1) + sizeof(arr2)
Matin Rzaev
Can u use pastebin? Google it
Thank u very much.I will google it
Garvine
You cant
S what do you mean can you not get a union of two sorted arrays??
Vlad
S what do you mean can you not get a union of two sorted arrays??
Only when let's say array1 has the capacity of both
Anonymous
Please anybody help me
Anonymous
Tomorrow my quiz is very difficult, who will help me oop
Harsh
Z0OM
int* ptr = new int(5); int* ptr2 = new int(6); delete ptr; ptr = ptr2; is something wrong with this code??
Z0OM
help!
V01D
That is a memory leak. (Heap)
V01D
I may be wrong, I am still learning C++. Correct me if I am wrong
V01D
But ptr does not exist after delete afaik
Z0OM
You are not deleting ptr2
this code is a part of big code. it is being deleted afterwards
Z0OM
let me explain my problem.
V01D
this code is a part of big code. it is being deleted afterwards
Share all of the code that is needed to help then
Renan
Do know-it-all software developers exist? 🤔 I mean a single individual who simply masters all industry standard technologies for developing software. Will we have a know-it-all developer role in some point in time, or worse, will advancements in AI outsmart humans in software development? Food for thought. 😅
Renan
Of course not
They also said 640K would be enough. 😅 👍
Renan
They also said 640K would be enough. 😅 👍
Today, I do not know if 640GB is going to be enough. 🤔
Renan
Do know-it-all software developers exist? 🤔 I mean a single individual who simply masters all industry standard technologies for developing software. Will we have a know-it-all developer role in some point in time, or worse, will advancements in AI outsmart humans in software development? Food for thought. 😅
But there are advantages of being a know-it-all developer. Let us say your company wants to migrate their software from C++ to Rust. Not only you will be able to do the migration but you also will not be fired when the migration is done and can continue working in the same project now written in Rust. 🙂
Renan
Additionally, if you are a know-it-all developer you can start your own business and do plenty of freelance works. 👍
And you can save on paper too when writing your CV. Just add: I just know it all. Do not believe it?! Call me to do an interview. 😎
Renan
Welcome, @thmeier!
Mohit ^_^
Hi. I wanna create a pair of char & array pointer. I want to store the current index's address to the second of pair pair. I have written something like this but I can't figure out the datatype to use at the part I have question marked. Any suggestion would be helpful. Thanks int sz = bwt.size(); // some string vector<pair<char, ??? >> a(sz); // here vector<pair<char, ??? >> b(sz); // and here for (int i = 0; i < sz; ++i) { a[i].first = b[i].first = bwt[i]; a[i].second = b[i].second = &a[i]; //pair.second holds the address }
Mohit ^_^
Renan
yes ?
Yes, it looks a lot like it. 🙂
Mohit ^_^
xD
Anonymous
https://www.youtube.com/watch?v=RLTZmprHFnw
Merazi
Offtopic?
it's an algorithm, it might be in topic
Merazi
it's just a visualization of the algorithm tho... :/ I expected more
Anonymous
https://www.youtube.com/watch?v=RLTZmprHFnw
Paper : https://doi.org/10.1016/j.iot.2020.100207
Sai
How do u write a palindrome program
#include <stdio.h> int main() { int n,rem,i, result=0; printf("Enter the number: "); scanf("%d",&n); i=n; while(i!=0) { rem=i%10; result=result*10+rem; i=i/10; } if(result==n) printf("It's a palindrone"); else printf("No! It's not a palindrome "); return 0; }
Anonymous
2147483647
Anonymous
Represent the reverse of this number in an int
Anonymous
Why
See that number
V01D
Integer overflow?
V01D
Needs an unsigned int
Anonymous
Integer overflow?
You have never seen that number?
V01D
You have never seen that number?
I am not a programmer with good habits
V01D
Resources online fail to explain important stuff
Anonymous
I am not a programmer with good habits
That number is signed integer max
V01D
And the vulnerability is?