User profile: Kotori

This account has limited functionality.
This was likely due to the user being reported by not following some specific rules for a service in this website.
If you believe this to be an error, please use our Contact form
User info
User name:Kotori
History
Joined:
Number of posts:10
Latest posts:

I don't understand this.
These instructions are for Linux and Mac systems. For example, you can open a terminal window and t...

how to find the largest element from the linked list of unknnown numbers?
Simple. Traverse though a linked list via a for-loop and search for the biggest number. [code]int l...

decimal to octal conversion program. output comes in reverse.
@Alam997 Did you understand my program?

I want to improve my c++ skills, any rec?
Practise a lot. Write world-level programs which can extend to thousand of lines of code, like Yahtz...

decimal to octal conversion program. output comes in reverse.
[code]#include <iostream> #include <string> #include <algorithm> using namespace std; int main() {...