Aashirwad
So there is no way to show my knowledge?
klimi
Or on your portfolio
klimi
Actually results and not "I have watched videos on YouTube"
Aashirwad
I found good stuff so I followed youtube
Dima
So there is no way to show my knowledge?
practice, real work experience years
@MTRIX0
Do any one having the c++ projects with source code
@MTRIX0
Actually I wanna practice with it
@MTRIX0
That's y
Dima
Noobs
NXiss7
Actually I wanna practice with it
Haven't open sourced yet. You can read KDE or some another program of your interest.
NXiss7
Start by wrappers, they are easier to understand and uses lots of data features.
Francisco
/report
Roxifλsz 🇱🇹
/warn movie???
NXiss7
msvc stl lol
🤣🤣🤣😂🤣🤣😂😂🤣😂🤣
Anonymous
Hello my friends i have telegram source and i am from iran do you think i can upload the source to iran servers? Will you tell me what to do?
Joesph
Joesph
So stop for fucking certificates and do some open shit ( I mean open source ofcourse)
NXiss7
So stop for fucking certificates and do some open shit ( I mean open source ofcourse)
Yes! "Talk is cheap (certificate too) ahow me the code"
Anonymous
Friends can you help me to solve some questions about c?
Anonymous
Artöm
First
Anonymous
hellow am having trouble understanding pointers specialliy with char *argv[] any good website book or video to gett a better understanding of them ?
Artöm
Read a book
Raj
Bc
Anonymous
Hello admins I am in trouble with one of the concept of c++
klimi
Hm?
Anonymous
I know pointers but couldn't understand linkedlist coding (I only know it's symbolic meaning that it will point to other address of array or stack ) Could you explain how insert operation takes place in linkedlist of c++
Anonymous
I have even solved many outputs of pointers but linked list insertion seems tough
Anonymous
Looks like all are busy
I_Interface
I know pointers but couldn't understand linkedlist coding (I only know it's symbolic meaning that it will point to other address of array or stack ) Could you explain how insert operation takes place in linkedlist of c++
Insert in begin: The new element becomes a new head of list and the previous head will have back-directional pointer for the new element Insert in end: The new element becomes a new tail and the prev tail will have the next-directional pointer on the new tail-element Insert in other space: 2 elements in place, where u want insert your element will have a back/next pointer to this element.
klimi
Looks like all are busy
I just dont know the answer ¯\_ (ツ) _/¯
I_Interface
Can you gave an simple example of insertion at end
U can google examples of linked list for newbies.
Pavel
I know pointers but couldn't understand linkedlist coding (I only know it's symbolic meaning that it will point to other address of array or stack ) Could you explain how insert operation takes place in linkedlist of c++
Not sure about the symbolic meaning you mentioned. Linked list nodes point to other nodes (and to stored data items, if data is not part of the nodes), and most likely both are on the heap.
Anonymous
I just dont know the answer ¯\_ (ツ) _/¯
But you are programmer I am just a amateur learner who started learning c++ 2 years ago (if you know pointers you must have read somewhere about it) this concept is tough
Anonymous
2 years and still doesn't know about linked list work ? Are u sure what programming is your thing ?
A 17 year old average student was trying to understand this difficult concept for 7 months (though I know it's meaning)
MilkBeforeCereal
I know a 14 year old who's fluent in like 6 languages
MilkBeforeCereal
:c
Anonymous
Haven't use pointers for first 1.5 years of programing in c++
While it's one of the most important thing in programming to learn next to arrays and functions as many have said
Pavel
Nodes are pointers which point to other addresses right or they have some other function
In a single-linked list, each node contains pointer to the next node and either data, or pointer to data. E.g. you have 3 elements in a list, where data stored is integers: 1, 2, 3. So your node can look like this: struct Node { Node* next; int data;}; And then 1st node's next will point to the second, and have 1 in data. Second node's next point to the third node and have 2 in data. And the third's next have value that represents the end of the list (e.g. nullptr, or a pointer to some special end element), and data value of 3.
Pavel
In a double linked list it also contains a pointer to the previous element.
András
While it's one of the most important thing in programming to learn next to arrays and functions as many have said
Yeah I have started to use pointers when I had to use private variable outside the class(I couldn't rewrite class members)
Anonymous
I don't know how it can be inexplicable.
What ❓ I didn't get what do you want to say
I_Interface
@Mayaletitgo Read. Very slow and for 5-10 times if needs. https://www.softwaretestinghelp.com/linked-list/
klimi
:c
Are you alright?
Anonymous
How am I a programmer?
You are a programmer That's why you are made admin of this group
MilkBeforeCereal
Are you alright?
that's a complex question
MilkBeforeCereal
why
Anonymous
Suppose I have a structure named DVD So DVD *T=new DVD; So it will allocate memory of a new structure with a new pointer Right but what actually happens
András
You are a programmer That's why you are made admin of this group
Nope. He is admin becouse he has good friends))
Anonymous
Nope. He is admin becouse he has good friends))
Anyway could you explain me my doubt
joker
anyone want amazon prime account ?
Roxifλsz 🇱🇹
Oh... @roxifas look I am a programmer xD
Well yes, you're not professional , but you do code stuff, that's nothing new
Roxifλsz 🇱🇹
Roxifλsz 🇱🇹
anyone want amazon prime account ?
Don't do this stuff here, you will get warned
joker
k
Roxifλsz 🇱🇹
I do not know that I just ddg and so
Literally everyone who programs has to look stuff up online, there's just way too much information to remember it all. Because of that even searching online is something that programmers need to be really good at
Anonymous
Literally everyone who programs has to look stuff up online, there's just way too much information to remember it all. Because of that even searching online is something that programmers need to be really good at
You think I never tried to search about it I also read the books and even coded it successfully but couldn't understand it My teacher says Programming requires practice and most important understanding and improvement take place with time
Roxifλsz 🇱🇹
I guess that comes with experience