Morgan
@KlimiCZ wassup
klimi
@KlimiCZ wassup
im downloading textures for my animations and models
Morgan
Wow that's good
yuuki
im downloading textures for my animations and models
Any chance we can get a glimpse of your animations ? It would be awesome if you could... 😝
klimi
glimpse?
Anonymous
#include <stdio.h> void f(char**); int main() { char *argv[] = { "ab", "cd", "ef", "gh", "ij", "kl" }; f(argv); return 0; } void f(char **p) { char *t; t = (p += sizeof(int))[-1]; printf("%sn", t); }
BinaryByter
IT
BinaryByter
#goodgoogling
Marie
#goodgoogling
https://support.google.com/websearch/answer/134479?hl=en
Anonymous
any one can explain it
BinaryByter
#googleit
Marie
#googleit
http://www.fuckinggoogleit.com/
MᏫᎻᎯᎷᎷᎬᎠ
GOOOGLE
He can't google a source code
MᏫᎻᎯᎷᎷᎬᎠ
MᏫᎻᎯᎷᎷᎬᎠ
you can
Can u?
Mat
Why people arrive here and expect someone explains basic things. We are even in a chat, so the explanation will take at least 4 times the amount of time needed by a self research
Mat
Learn to google, that will be far more useful
Mat
GOOOGLE
Strange you didn't suggest C++
Bader
spend at least 3 hours on google
Bader
THEN if you're having trouble ask questions
Monk
hii guy's i like this c language
Anonymous
hiii india rulezzz
Monk
I want to learn C language programming from the beginning
Anonymous
yes we india
Monk
from where
Monk
help pleese
Monk
I want to learn c language
Anonymous
from where
unless you dismissed it, on the top of the screen, below the android action bar (the one with the group name) of the telegram app there is "pinned message", click on it and read the message
Anonymous
Ty
Np
Nehemiah Aklil
Hi guys
Anonymous
morning all
Nehemiah Aklil
Can you tell me which app to use to write C++ on android phone
h4child
morning all
here night
Dennis
Can you tell me which app to use to write C++ on android phone
Let's assume you do get one. What will you compile with? Just use a PC
MᏫᎻᎯᎷᎷᎬᎠ
Can you tell me which app to use to write C++ on android phone
-cxxdroid -c4droid but u'll to have to download it's C++ compiler separately -AIDE and then download NDK support it's about 170mb It's all found in play store
MᏫᎻᎯᎷᎷᎬᎠ
Welcome
Nehemiah Aklil
Let's assume you do get one. What will you compile with? Just use a PC
Wat is ur favorite compiler from turbo, codeblocks,Dev😡 and Quency
Anonymous
#welcome#
MᏫᎻᎯᎷᎷᎬᎠ
Lol
Mdex Community
I want to know the concept of linked list
Oleh
I want to know the concept of linked list
https://www.geeksforgeeks.org/data-structures/linked-list/
Mdex Community
Thank you
Mdex Community
Want the codes of linked list
klimi
i want to know how to code
Marie
Want the codes of linked list
http://www.fuckinggoogleit.com/
Mat
https://www.geeksforgeeks.org/data-structures/linked-list/
That link is full of things and you ask more? DIY
Shubham
Anybody can help me I could not compile a program in code blocks after compile it just says u have not compiled yet even after true file location
Mat
Just curious
Shubham
Ya
Shubham
I have searched
Mat
For at least 2 or 3 hours?
Mat
Trying different keywords
Mat
Searching tutorials for code::blocks
olli
Want the codes of linked list
Source of Linked List Implementation in libc++: https://raw.githubusercontent.com/llvm-mirror/libcxx/master/include/list Your compliant c++ STL comes with an implementation in the list header
Ludovic 'Archivist'
It is sad that list is one of the data structures that is both the most underrated, one of the most important, and the most useless data structure
Ludovic 'Archivist'
Why do you think it's underrated?
Because benchmarks show it is pretty fast in most situations, yet actual codebases rarely attempt to make use of it
olli
Linked Lists are fast if you - don't need to traverse them / perform access by indices - remove from within the list (not the end) - insert in the middle IMO std::vector is the better choice in most situations
Ludovic 'Archivist'
care to share any of those benchmarks?
https://baptiste-wicht.com/posts/2012/11/cpp-benchmark-vector-vs-list.html
klimi
hi ludo
Ludovic 'Archivist'
hi ludo
Hey lil boy
olli
Vector is a very good choice for small elements
vector is great if you don't need to modify it often
MᏫᎻᎯᎷᎷᎬᎠ
Vector is a very good choice for small elements
Better than list But as u said for small elements
klimi
i changed my mind ludo
Ludovic 'Archivist'
Better than list But as u said for small elements
Yes, list completely beat vector for big elements
.--. .-. .. -.-- .- .-..
anyone likes micro editor, I made a cheatsheet for that: https://www.cheatography.com/pryl/cheat-sheets/micro-editor/
Ludovic 'Archivist'
Particularly for elements bigger than a memory page
olli
not when you traverse them most of the time