Recent content by FYAD

  1. F

    Stuck on cryptology problem(vigenere cipher)

    I was assigned to decrypt this cipher text: EWPW DRAPO MGTGT EXVAH RPSWI LSFUN RZVSE FOIWJ NYOU MHSER EFBMB VANHA LOOXI VPBIF FIFMA BFGRH GARE TLKLF NZQXQ DWGKP UWNWQ QFRZL VROOP UGBQQ HVKS CDOPW LSGTE JMFSE MLZMD TNDED VVGRO UUMLV NLHA KWASO ITAPR DTBBG CHDSH TNSFM NGWMF CASWM...
  2. F

    C/C++ C++ linking/inheritance problem?

    grr, two seconds after I posted this I figured it out. I put a Queue constructor in my Steque.cc class and it worked. I'm not sure why, but it did. Thanks for the potential replies.
  3. F

    C/C++ C++ linking/inheritance problem?

    I'm writing a Steque class that will inherit from my Stack and Queue classes. When I try to link it, I'm getting this weird error, which I'm sure has something to do with trying to inheritance. Queue.h #include <iostream> #include <cstddef> #include <stdlib.h> using namespace std...
  4. F

    Trying to emulate recursive ls command(very new to c)

    I changed dp to a local and passed it into listit. Directores still aren't getting read though? Maybe my understanding of what's going on is incorrect. In my main method I have dirp = opendir(argv[1]);, which reads in a directory name from the command line and attempts to open the...
  5. F

    Trying to emulate recursive ls command(very new to c)

    I'm very new to programming in c, and I'm trying to write a program that recursivley lists all the files in a directory, as well as all of the subdirectores and their files. I'm having some problems. On my first go I was able to get all of the files of the current directory to be listed...
Back
Top