Anonymous
E
Pranay
K
Anonymous
K
Roxif位sz 馃嚤馃嚬
Oi what's the ruckus in here?
Roxif位sz 馃嚤馃嚬
Seems like a case of memes
Anonymous
Seems like a case of memes
Ya an Indian guy who fraud our banking system
Anonymous
Oi what's the ruckus in here?
The one just above it is regarding indian prime minister
Anonymous
Anonymous
Roxif位sz 馃嚤馃嚬
Oh well please do keep politics and non-English speaking to a minimum, k thx
Roxif位sz 馃嚤馃嚬
🙈kek
ULTIMATE KEK
Roxif位sz 馃嚤馃嚬
Adi Primanda
Announcing Rust for Undergrads, a community initiative by Rust India. "https://github.com/rustindia/Rust-for-undergrads/" Aim: Encouraging undergrads to re-write C/C++ questions in their academics, job interview and programming practice problems into Rust language. Goal: To make it easy for undergrads to start programming in Rust. Evangelizing universities/schools to replace Rust in place of C/C++. Level: Beginner/Intermediate If you like it, *star* the repo. Interested to collaborate and be part of making this initiative big? talk to us on @RustIndia
Roxif位sz 馃嚤馃嚬
Is this a call of wer?
It seems so, let's malloc() those tanks, this is a war :D
脕lvaro
and also the stack, based on OS and compiler
alvarogl@alvarogl-PC:/etc/apt/sources.list.d$ ulimit -a core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited scheduling priority (-e) 0 file size (blocks, -f) unlimited pending signals (-i) 14677 max locked memory (kbytes, -l) 64 max memory size (kbytes, -m) unlimited open files (-n) 1024 pipe size (512 bytes, -p) 8 POSIX message queues (bytes, -q) 819200 real-time priority (-r) 0 stack size (kbytes, -s) 8192 cpu time (seconds, -t) unlimited max user processes (-u) 14677 virtual memory (kbytes, -v) unlimited file locks (-x) unlimited
r35
Hey guys
r35
I want to join a team. C++, C or java team. Am Interested
Ruslan
https://quedeus.com/en/which-programming-paradigm-is-best/
King and Lionheart
Am a beginner..I love to code
Pete
If I am using linked lists and I want to delete a specific node. By using a prenode. If I set current node to null and then delete the current node, do I have to make current node = prenode or can I just leave it as is?
correctmaninwrongplace
Current, the node where the iterator is
correctmaninwrongplace
Linked list with dinamic memory, usually you go to the nodes using pointers, so you delete the node by deleting the pointer next on the previous node
Verdejo
Someone knows why i can't create a 'const int nums[ ] ={1, 2,...., 14}' in a header file on c++? I have the error: extended initializer lists only available whit c++11
Verdejo
The same array in a source file, i can
Anonymous
Try to add -std=c++11 in g++
Verdejo
Yes but finally i create nums in the source file, in the header i keep having the error
Nomid 脥korni-Sciurus
Hi, hi, hi!
Roxif位sz 馃嚤馃嚬
Welcome :D
Nomid 脥korni-Sciurus
I'm a middle experienced C programmer (not an expert, but neither a novice) and I'd like to build a project for which I need to know x86 assembly...
Nomid 脥korni-Sciurus
Do you know any references I could look at? I'm a total beginner with assembly, but know something about registers, 2's complement, jump and conditional jumps, memory addresses...
Nomid 脥korni-Sciurus
I'll have a look at it, thank you
Aman Sharma
Nomid 脥korni-Sciurus
thank you!
Rahul
b v by. best r bynrru v by hby hjbbbhbn4y kyh hbnbb hu.bo7nhbyhjynvvbg bbhmvhvbhm bb6 77 hhvbkbg6bbhv.hhh jhjbbyybvgcb
Rahul
Salom! Xudo hohlasa, bugun siz uchun zo'r kun bo'ladi😉
Anonymous
Wtf is this
Ghost touch 😂
Anonymous
https://medium.com/howcatcancode/onanendeavour-d362371eb921 An article about Tech Interview Preparation.
袧袨袟袠袦
T
j@ke
for (i = NUM_VALS - 1; i < NUM_VALS ; i++) { cout « courseGrades[i] « " "; } Why does this only print the first Value of the array? Trying to make decrement loop inside an array but it only prints the last value :( new to cpp :(
j@ke
got it nvm :D
correctmaninwrongplace
Or Start i at 0
Anonymous
hes trting to make decrementibg loop, need to change to i-- , and stop condition >= 0
j@ke
yea, i figured it out. put it >= 0. Been struggling with this array stuff. thanks the feed back :)
Anonymous
Can we conclude programming in 3 actions (importing data => ordering => executing or running) ?
Anonymous
where is outputing data?
Anonymous
Anonymous
Anonymous
Hello everyone
Etaoin
github was ddosed 1.35Tb yasterday
Anonymous
Yep
Anonymous
https://www.wired.com/story/github-ddos-memcached/
Etaoin
why and by whom
theFlash
Off topic : anybody know data entry jobs without investment 100% gurantee payment Plz let me know I want part time job
harry
namespace constants { const std::string namesCSV = "50names.csv"; }
harry
is this a sensible way to define constants?
Liam
namespace constants { const std::string namesCSV = "50names.csv"; }
global constants could be defined in an anonymous namespace. namespace { constexpr const size_t kMaxBufferLen = 1024; }
Liam
for const strings, char* would be better than std::string. namespace { constexpr const char* nameCSV = "50names.csv"; }
harry
thanks, Liam
Liam
is there an advantage to using "constexpr const" rather than just constexpr?
constexpr doesn't contains the sematic meaning of const.
Liam
which means that a constexpr variable could be non-const.
harry
which means that a constexpr variable could be non-const.
but constexpr int a; makes a immutable doesnt it?
Liam
but constexpr int a; makes a immutable doesnt it?
https://stackoverflow.com/questions/14116003/difference-between-constexpr-and-const
harry
https://stackoverflow.com/questions/14116003/difference-between-constexpr-and-const
"When can I / should I use both, const and constexpr together? A. In object declarations. This is never necessary when both keywords refer to the same object to be declared. constexpr implies const"
harry
(quote from the top answer)