Search:

Type: Posts; User: Nyarlathotep_

Search: Search took 0.01 seconds.

  1. question about programs accessing the outputs of different programs

    i have a program, assembler, that reads from a text file,sort.s, containing a bubble sorter in mips assembly language, assembles it, and then writes the output to a different text file, output.o...
  2. ugh, i just realized that the array must be long...

    ugh, i just realized that the array must be long enough to accept all the bits from the function (32 in this case) plus one for the null character. so just setting biChra to 33 instead of 16 should...
  3. itoa, binary, negative numbers and 2's compliment

    hi, i need to get a negative int into its 2's complement binary representation.

    i was screwing around with the itoa() function and found that when i put the base input as 2, it would turn my...
  4. oh! that's my problem: i wasnt putting the map...

    oh! that's my problem: i wasnt putting the map name after the declaration; i was just putting

    int function(map<string, int>) as opposed to
    int function(map<string, int>map_name)
  5. my project is to build an assembler for a mips...

    my project is to build an assembler for a mips program i wrote

    i have this map in my main function:



    string printCode(string, string&)

    int main()
    {
  6. is it possible to pass an std map as a parameter to a user defined function?

    i have a std map that stores information obtained within main() and is then needed within a user defined function, and i was wondering if it was possible. i cant just pass the value of the map into...
Results 1 to 6 of 6