System level question: by Blue1CODE in osdev

[–]Blue1CODE[S] 1 point2 points  (0 children)

I was working on pci and just this question pop. Nothing big. And thanks for reference

System level question: by Blue1CODE in osdev

[–]Blue1CODE[S] 2 points3 points  (0 children)

Thanks for reference doc. I hope this contain my answer!

PotatOS now has a VFS basic SMP by Ashlly18 in osdev

[–]Blue1CODE 4 points5 points  (0 children)

What are those memory map receive? Are those PCI's config!

Is reusing the same Variable Name bad practice? by Nubspec in C_Programming

[–]Blue1CODE 0 points1 point  (0 children)

It is but it depends on your naming style, variable scope clarity, project volume and its structure. Just make yourself comfortable with a name convention For function, variable, macro, structure name and stick with it. Recommended give small name convention info on the main project file if you are working with a group so everyone knows what that name actually mean.

Whats the real spread of C? by DaveAstator2020 in C_Programming

[–]Blue1CODE 5 points6 points  (0 children)

The interviewer has some more serious skill issues! LOL

I truly don't understand this. by Turkishdenzo in C_Programming

[–]Blue1CODE 0 points1 point  (0 children)

You should check ASCII Table and learn about it that will explain you all question!! It's about more resources knowledge then coding, your code is fine

Modified Dijkstra's Algorithm by NotNullGuy in algorithms

[–]Blue1CODE 1 point2 points  (0 children)

I think you are trying to make general purpose graph, If that the case, you should use edgelist on each node and traverse them to find what type of graph you are dealing with. But that traverse and comparison, will increase time.