• Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Twitter Bot to Make New Colours - Will Pay Money

    I think you have the wrong forum; this one is dedicated to helping programmers learn how to improve their craft, not a hiring forum. Try the 'Jobs & Resumes' message …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching costruct an algorithim and a flowchart

    to find the sum of first n even numbers.
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in costruct an algorithim and a flowchart

    No one here will do your homework for you. Please demonstrate that you have at least tried to solve the problem first prior to posting here. <rant> Seriously? This is …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Best sort for a doubly linked list

    **Thomas_25**: rubberman and deceptikon have, indirectly, brought up a good point: is a doubly linked list what you actually need for your purposes, or would an ordered tree structure of …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching seperating input number in thousands

    in windows calculator the digits get seperated in thousands as you type in the number , how can it be done in python ? thanks
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in seperating input number in thousands

    I am guessing that you used the built-in `float` type for this, but given that you are dealing with currency, I would recommend using the [decimal module](https://docs.python.org/3/library/decimal.html) for representing the …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching To Implement Predictive Parsing in C

    This Program implements the Predictive Parsing Of the grammar E->E+T/T F->F*T/F F->id(Identifier)
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in To Implement Predictive Parsing in C

    **suraiyaparveen**: You won't get it, for two reasons. First, no such program exists - those are all things that need to be done manually, not programs to be written. Second, …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Digital alarm Clock assembly for 8085 microprocessor

    Hi I want Example for code in assembly language to develop alarm clock using **8085 microprocessor** As soon as you can Thanks
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Digital alarm Clock assembly for 8085 microprocessor

    *I've ended up pulling this boilerplate reply out twice in 24 hours, sheesh* First off, we don't do other people's homework for them. Second, we *don't* do other people's homework …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching reading from urandom file

    Hi everyone and good morning :) . i want to simply read from the linux file "urandom" a random number and print it out on screen.just simple as that. this …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in reading from urandom file

    Before I get to my answers, let me ask you a question: what is your purpose in accessing `dev/urandom`? Is this for a class assignment, or part of a larger …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Muluplication

    Now then, to repeat rubberman's question: what problem are you actually having with this code, and where is it occurring?
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Muluplication

    04279169@uofn.edu.om Do Muluplication in this program ? #include<iostream> using namespace std; class Node { private: int row;// different data type for other apps int column; int value; Node *next; // …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Muluplication

    For the sake of readability, let's start by separating the class declarations and implementations from the main program, and get the whole into some semblance of a consistent indentation: **matrix-list.h** …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Best sort for a doubly linked list

    Hi all, What is the best sorting algorithm for a doubly linked list? Insertion sort and merge sort appears to the best due to the less overhead compared to the …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Best sort for a doubly linked list

    IMAO, the best approach to sorting a linked list is not to let it get out of order in the first place. While inserting the nodes in order is slower …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching egypt pyramide

    I DUN UNDERSTAND WHAT TO DO. PLZ HELP ME. WE HAVE TO DO IT WITH SIMPLE C++ PROGRAMMING. THANKS Egyptian Pyramids were constructed around 2500­3000 BC, by using large Cubic …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in egypt pyramide

    First off, we don't do other people's homework for them. Second, we *don't* do other people's homework for them. And third, ***we don't do other people's homework for them***. Sensing …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching DBMS - Database Management System

    From what I understand a DBMS is a software that manupulates a database. I am developing a retail checkout system which is link to a SQL database. Is that consideres …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in DBMS - Database Management System

    No, the DBMS is the SQL library or process that the application interfaces with to manipulate the database. For example, MySQL is a DBMS, but an application that uses MySQL …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Calculator with function

    how can i make a calculator using function and procedure..
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Calculator with function

    > how can i make a calculator using function and procedure.. With all due respect, this is far too broad a question for us to try to answer, even if …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching C++

    What does int flag = 1 or flag = 0 means in C++ language? I have seen it in many programs but I don't know its use.
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in C++

    The elaborate on DaveAmour's answer, you should know that C (the predecessor of C++) does not have a built-in boolean datatype, and until the C99 standard didn't have a standard …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Unsolved program on pattern.

    Write a program to print the following pattern based on user input. For eg: If N=4 the code should print the following pattern. 1*2*3*4*17*18*19*20 --5*6*7*14*15*16 ----8*9*12*13 ------10*11 Again if N=5 …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Unsolved program on pattern.

    **Aditya_13**: While your willingness to help is commendable, it is ill-advised in this instance. Why? Because the OP didn't show any evidence that they had put any effort into the …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching How do i put a GUI on this program?

    import random print(" Welcome to the guess my number") print("I'm thinking of a number between 1 and 50") print(" Welcome to the guess my number") print("try guessing in 10 attempts") …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in How do i put a GUI on this program?

    The first step is to import the GUI library you mean to use. Since [a set of bindings for Tk](https://docs.python.org/3/library/tkinter.html) is included with the Python standard library, that's probably the …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching dev c++ is not showing output

    i have a problem with my dev c++ whenever i write a source code firstly it shows output then i made amendments in it after that it is not showing …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in dev c++ is not showing output

    Can you clarify what you mean, please? Is it that changing the source code leads to it failing to have any output at all, or is it that the output …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Hello guys can anyone solve this exercise ?

    Bank Waiting Times Customers often have to wait during the acquiring and consuming many products and services. Many banks participated in an experiment testing customers’ satisfaction with waiting in the …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Hello guys can anyone solve this exercise ?

    *I know I've been using this a lot, but the OP in this case [really needs this particular anvil dropped on his head](http://tvtropes.org/pmwiki/pmwiki.php/Main/SomeAnvilsNeedToBeDropped).* First off, we don't do other people's …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Gave Reputation to Khalil_2 in Hello guys can anyone solve this exercise ?

    thanks guys u lost the chalnge c u in a next question
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in C++

    > respectfully you don't have any right to notify of which country I belong to and what are our professors teaching us? I apologize for overstepping on this matter, then. …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching C++

    I need the solution of this program using C++ .. Develop a database software to maintain the records of students of a college.The software should be user-friendly.The user can easiy …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in C++

    Let's see, old style headers with extensions, `<conio.h>`, `void main()` - let me guess, your professor is using Turbo C++ as your compiler? */me checks OP's locations* Ah, Pakistan, that …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Null pointer

    What are the advantages and uses of a null pointer?
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Null pointer

    As Moschops said, the NULL pointer is essentially a marker. Setting a pointer to NULL is a way of indicating the pointer is in an unusable state. Now, as for …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Gave Reputation to Ssandhya in Computer Science Final Year Project Ideas

    hi...am cs student..my interst in java..can any suggest me inovative idea for my project..plzz help me..
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in What's wrong with my goto statement??

    > There's a lot of (well deserved) hate for goto, but it's not inherently broken or bad. True; there are places where it is justified, and where it makes sense …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching What should I do ??

    Hey guys I'm having trouble on placing my loops I actually want to make a square and I dont know how to manipulate my own placement because I am used …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in What should I do ??

    You're correct that `gotoxy()` is specific to the Borland compilers; there's no standard equivalent for it, exactly, but for this purpose, the code you have is good beginning. I would …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching What's wrong with my goto statement??

    Can I ask on how to use the goto statement because here in my program I am using Function and inorder to go back from the top I use goto …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in What's wrong with my goto statement??

    If you don't mind me asking, did your instructor actually teach you to use `goto`, and more importantly, were you actually directed to use it? I would find it deeply …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Can you help me guys ??

    Ah, there seems to be an issue with terminology that is confusing both you and us. To clarify, a `struct` is **not** a function; it is a data structure declaration. …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching how to use structure in C

    i have a code which asks creates a structures and then for each it will check if the asks the user to enter a name and it will check if …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in how to use structure in C

    I should also add that, strictly speaking, in C prior to the C99 standard, all declarations within a function needed to be made *before* any other statements. I only bring …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Can you help me guys ??

    Hi I just wanna know what is wrong in my program I'm a little bit confused using FUNCTION... Thank you... #include<iostream> #include<cstring> using namespace std; struct Name{ char* names; int …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Can you help me guys ??

    As rubberman said, your statement doesn't make much sense. Could you please explain a little clearer just what it is you need help with?

The End.