2017년 3월 30일 목요일

[C++] Source codes on March 30

Source codes


[Open Source] Source codes we worked on March 30

//unix3-1.c

#include <stdio.h>
#include "unix3.h"

int main()
{
printUNIX();
printGCC();

return 0;
}

=======================================================
//unix3-2.c

#include <stdio.h>

void printUNIX()
{
printf("UNIX\n");
}

=======================================================
//unix3-3.c

#include <stdio.h>

void printGCC()
{
printf("GCC\n");
}

=======================================================
// unix3.h

#include <stdio.h>
# ifndef UNIX3_H_
#define UNIX3_H_

void printUNIX();
void printGCC();
#endif
=======================================================

$ gcc -c unix3.2.c
$ gcc -c unix3.3.c
$ gcc -o unix3 unix3-1.c unix3.2.0 unix3-3.o


2017년 3월 27일 월요일

[C++] HW4 - Due Date (April 5)

HW4

Please submit your HW to the report box in front of NC Lab, where located at #318 (office room change)자연대연구실험동 (Building# 313). Due Date: by 7:00 pm (or much earlier is possible).








2017년 3월 23일 목요일

[Data Communications] Next week, let me explain again what I talked about today

Today's topics are so tough..
Next week, let me explain again what I talked about today.

Don't worry ^.^*


[C++] HW 3 (Due: March 29)

HW 3


[Notice] Do not use STL such as vector, list, etc.
             Just use struct and "struct array"

             Googling keywords: "c struct array"

Please submit your HW to the report box in front of NC Lab, where located at office #318 (office room change)자연대연구실험동 (Building# 313). Due Date: by 7:00 pm (or much earlier is possible).


[C++] Source codes that we worked on March 23

Source codes

Today's topics are so tough...
Don't worry ...

The force will be with you..
New homework will be coming soon ..




2017년 3월 22일 수요일

[OpenSource] HW3 (Due date: March 29)

HW3

Please submit your HW to the report box in front of NC Lab, where located at office #319, 자연대연구실험동 (Building# 313). Due time: by 7:00 pm (or much earlier is possible).


2017년 3월 21일 화요일

[C++] Cygwin and Code::Blocks

On March 22,

I 'll let you know how to use cygwin and code::blocks tools!!

To download code::blocks,

please visit to http://www.codeblocks.org/downloads/26

[Note]

In case of the cygwin terminal, use the following command:
$ g++    -std=c++11         -o         hello         hello.cpp

How to install Cygwin and Codeblocks tools




2017년 3월 10일 금요일

[C++] HW 2 (Due: March 17)

HW 2

Please submit your HW to the report box in front of NC Lab, where located at office #319, 자연대연구실험동 (Building# 313). Due Date: by 7:00 pm (or much earlier is possible).


2017년 3월 8일 수요일

[Open Source S/W] Homework 2 (March 15)

HW# 2

Please submit your Homework to the report box in front of NC Lab, where located at office #319, 자연대연구실험동 (Building# 313). Due Date: by 7:00 pm (or much earlier is possible).