Anonymous
These are book can you mention some specific topics?
not really. concurrency stuff can be done later. but he mentions that at number 4. as i said, best sorted list
Rasim
Hello everyone i want to solve one problem in c related to operating system architecture. Can you help with explanation or with suggesting some related resources
Rasim
Anonymous
1) read the books. these are extremely easy. in fact the bank problem is almost always the first problem you learn about when reading about DBMS and concurrency 2) imagine running the functions a second time before the first instance finished executing
Anonymous
thank you
actually 3) imagine what happens when the second instance is started when no lines of the first instance is executed. what happens when the second instance is started after one line of the first instance is executed. what happens when the first instance is restarted after the second instance executes for a while. think about all possible scenarios. you will get your answer
Dominator
Dominator
Dominator
Dominator
Why there is error and how should i get over it
Anonymous
https://medium.com/@mogileeswaran/hello-world-covid19-visualization-eb6736e1dec?source=friends_link&sk=9b03555441fbdcf287d6dfb47a429323
Anonymous
My first post on medium
Anonymous
COVID-19 Visualization
Anonymous
It's on DS/ML
Anonymous
I mean python
Dima
I mean python
it is not c++ 😕
Рома
Guys help me, maybe some one know, how appears one miss row in the linked list ?
Dima
please format the codeh
Anonymous
it is not c++ 😕
Yes, but I posted this why because if something wrong in post format I'll get feedbacks , so...
Рома
Рома
https://pastebin.com/raw/tTa8ckqi
Рома
https://pastebin.com/raw/tTa8ckqi PLZ))) Help )
Dima
why do you rewrite values?
Dima
it is error
Dominator
Dominator
It is also not working thats why i added <int>
Рома
why do you rewrite values?
Yes, but if I remove it, I get a delay for one inputting step
Dominator
Рома
I`ll show you\
Dominator
Error is this
Anonymous
Ok sorry for that
Рома
Error is this
Is it for me ?
Anonymous
Рома
Ok) pListEnd I use to get the last member of the List.
Dominator
Ok thank u
Рома
Ok) I`ll try it) Thx ❤️❤️❤️
Dominator
I eemoved const it compiled but just taking entries It is not stopping on n That's why time limit is exceeding
Dominator
I have placed v.begin()+i; In for loop
Dominator
Dominator
Ohk
Dominator
Yes i got your point
Dominator
Thank you
Sasuke
#cbook
Anonymous
Hello everyone, myself Navin and i'm new here for my c and cpp program study actually for aswignmemt and project as well as notes. Hope it will be a great journey with you all.😇
Anonymous
Who understands Question 5 and 6?
Anonymous
yeah i did😊
Anonymous
If you're gonna follow the rules, this will be a great journey
For sure, i will do follow all the rules and regulation.
Anonymous
😊
Prime
Any one with a pdf... C++
Anonymous
Any one with a pdf... C++
/warn I'm with warns, and you are now with a warn
Anonymous
But i'm just a beginner in programming world, hope you all will help me😅
Anonymous
But i'm just a beginner in programming world, hope you all will help me😅
Ask your questions and give enough information for us — this is a key to be helped Now we over this meaningless discussion
Anonymous
Okay sure.
Anonymous
any good soul that can help me in understanding this ⤴️. this comparison works, but not when x is against -1. my thought process is trying to tell me, because -1L has a “larger” size ~ 8B instead of unsigned int ~ 4B, so maybe thats why both are being converted and compared as “long”... ?? is that right if yes, then what does -2 get converted into and what happens with -1L. . .idkkk is it like -2L and -1L ?? :c ive been trying to figure out this from the past 30 minutes, im giving up, i need help. also where can i find resources which deal with these types of issues, its unnecessarily taking up alot of time while trying to think whats going on under the hood.
Marián
Marián
Marián
Marián
could anyone please tell me why? I feel like I am blind or something
Marián
I used VScode refactoring and smh broke my class names, fixed it but still can't compile... quess it's some typo but i am just freaking blind
Marián
this is ModelShapeRenderer.h file
Marián
and this one is RectShape.h i am trying to compile
Marián
and ModelShape class is declared in ModelShape.h
Ashish Bhushan
Who understands Question 5 and 6?
Question 5 is simply to give input in the array in form of string without using scanf...and question 6 is printing that string without using printf
Ashish Bhushan
You can use gets for input and puts fir output
Anonymous
5/ gets(s1); 6/ puts(); Is my writing correct?
Ashish Bhushan
Yes
Ashish Bhushan
Puts(s1)
Ashish Bhushan
No
Why?
Harsh
According to question, you perhaps should use loop to scan and print that character array
Harsh
Why?
It says array, not string
Ashish Bhushan
Ok so what's your idea on that!!
Ashish Bhushan
How to do it?
Harsh
How to do it?
a loop to iterate across array, printing every character and break when array[i]=='\0'
Harsh
Same for reading, break when user enters '\n'
Ashish Bhushan
So how will you print it without using printf?
Ashish Bhushan
I am asking that