Search:

Type: Posts; User: RicsterB

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    3,274

    I only repeated this part just to make sure that...

    I only repeated this part just to make sure that when adding elements to ptr, the addresses didn't change.


    I was just making sure each element had the same number of bytes allocated to it. I...
  2. Replies
    5
    Views
    3,274

    Question about the free() function?

    After allocating a single large block of memory with the specified size using malloc function, then you use the free() function to deallocate that single large block of memory.

    There is this one...
  3. Replies
    4
    Views
    5,815

    Okay, as I've researched, when the executable is...

    Okay, as I've researched, when the executable is created, it gets loaded into RAM, but is the diagram showing how the RAM processes the executable while it runs?
  4. Replies
    4
    Views
    5,815

    Memory layout of C program goes into RAM?

    Excuse my confusion. I am learning about how C programs are executed in memory. Here is the diagram:
    16282

    So, once a C program has been compiled and the executable has been created, the...
  5. How would these variables get pushed on to the stack?

    As far as I know, the stack is a region in RAM that stores local variables created by each function (including the main() function). The stack is a "LIFO" (last in, first out) data structure that is...
  6. Replies
    6
    Views
    6,244

    It's not actually a database. It's a "pseudo"...

    It's not actually a database. It's a "pseudo" database where information will be stored in a text file, then the program will later loop through the file and display what the information added to the...
  7. Replies
    6
    Views
    6,244

    Only one image, and the size depends on whether...

    Only one image, and the size depends on whether it's a jpg or png file. If I were to obtain the binary representation of the image, would I use dynamic memory allocation (storing the binary into an...
  8. Replies
    6
    Views
    6,244

    Database project to practice pointers

    I want to start a new C project that will help me better understand pointers and memory management. I've been using languages like Java and PHP, so I never had to deal with concepts like pointers,...
  9. Replies
    5
    Views
    5,242

    How to find a string in a text file?

    Say I have a text file called "accounts.txt" that contained the following:

    The format is like this: (account number)?(username)?(password)

    Now the following code is to search through the...
  10. Replies
    6
    Views
    5,376

    I got another question, when I try to execute the...

    I got another question, when I try to execute the following:


    #include <stdio.h>
    #include <string.h>


    void Login()
    {
    char uname[20];
  11. Replies
    6
    Views
    5,376

    So theres no need for the pointers? Just execute...

    So theres no need for the pointers? Just execute the function as is, and clear the console using: system("clear")
    BTW, i'm building this app on Linux.
  12. Replies
    6
    Views
    5,376

    Instead of saying "page", I could have said...

    Instead of saying "page", I could have said Welcome menu and Login menu.
  13. Replies
    6
    Views
    5,376

    Bank account management project help

    Hi. This is my first C project (I self taught myself C) and have started a basic project where users can create, update, view and manage, check and delete bank accounts. It's all terminal/command...
Results 1 to 13 of 13