项目作者: kirusfg

项目描述 :
NU SST CSCI 151 Course Exercises Solutions
高级语言: C
项目地址: git://github.com/kirusfg/CSCI151.git
创建时间: 2019-07-12T16:30:21Z
项目社区:https://github.com/kirusfg/CSCI151

开源协议:

下载


" class="reference-link">NU SST CSCI 151 Exercises Solving

This repository stores solutions to most of the CSCI 151 course exercises.

Downloading this repository

This can be done in several ways:

  • Download a zip archive containing all these solutions via the green Clone or download button
  • Clone this repository using git:
    1. Change the current working directory to the location where you want the cloned directory to be made
    2. Clone this repository to your working directory:
      1. git clone https://github.com/kirusfg/csci151.git

      Compiling and running the programs

      Linux

      To build and test the solutions in Linux, you have to compile them using a gcc compiler:
      1. gcc lessonX.Y.c -o programName.out -lm
      To run the program after compiling it, simply use:
      1. ./programName.out

      Windows

Eclipse IDE

If you are using Eclipse IDE, please add the following line to your code:

  1. setvbuf(stdout, NULL, _IONBF, 0);