Logo

GitLab

Sign in

SGJP / Morfeusz

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
03c175746e2e52f5f3ae9df7c917a8023f592c87
  • Morfeusz
  • morfeusz
  • main.cpp
  • - pierwszy commit ...
    b314fe9d
    git-svn-id: svn://svn.nlp.ipipan.waw.pl/morfeusz/morfeusz@2 ff4e3ee1-f430-4e82-ade0-24591c43f1fd
    Michał Lenart authored
    12 years ago  
    Browse Code »
main.cpp 382 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/* 
 * File:   main.cc
 * Author: mlenart
 *
 * Created on October 8, 2013, 12:41 PM
 */

#include <cstdlib>
#include <iostream>
#include "fsa.hpp"
#include "default_fsa.hpp"

using namespace std;

/*
 * 
 */
int main(int argc, char** argv) {
    unsigned char dupa[3] = {0376 | 1, 0111, 0234, };
    char x = 255;
    cout << *reinterpret_cast<int*>(&x) << endl;
    return 0;
}