본문 바로가기

C/C#/C++

C++ 혼자 실습중1 #include#include#include using namespace std; int main(){ifstream input("studentnums1.txt");string line;getline(input, line);cout 더보기
C++ 랩과제1 300421456 과 같은 9digit으로 구성된 학생번호가 있다. 이와 같은 것이 5개(있다 가정). 이를 오른쪽부터 하나씩 읽어나가야 함. 중복되는 것이 없는 unique한 최소한의 숫자구성이 몇개여야 하는지? 찾기솔루션 그려보자... 더보기
C++ 기초부터 배우자 http://itguru.tistory.com/136 더보기
C++기초 익히는 중! http://www.tutorialspoint.com/cplusplus/cpp_data_types.htm 더보기
HELLO WORLD! C# is a static programming language which lets us write code that runs atop Microsoft's .NET framework. C# has more features and capabilities than Java, but since it is owned by Microsoft, it means that you may find yourself paying money for your IDE, server operating system, etc.C# is object oriented and its syntax is very similar to Java.In our tutorial, we will be using the System.Console.Wri.. 더보기
API/.NET/MFC APIhttp://terms.naver.com/entry.nhn?docId=1179553&cid=40942&categoryId=32837.NEThttp://terms.naver.com/entry.nhn?docId=847228&cid=42346&categoryId=42346MFChttp://terms.naver.com/entry.nhn?docId=1608345&cid=50372&categoryId=50372 잘 모르겠다.. 더보기
씨언어 Linkied lists 익히는 중 A linked list is held using a local pointer variable which points to the first item of the list. If that pointer is also NULL, then the list is considered to be empty. ------------------------------ ------------------------------ | | | \ | | | | DATA | NEXT |--------------| DATA | NEXT | | | | / | | | ------------------------------ ------------------------------//노드의 구조?는 이렇게 생겼다(데이터를 가지고 잇고/넥스트.. 더보기
C언어 포인터 익히는 중 char * name = "John";does three things:It allocates a local (stack) variable called name, which is a pointer to a single character.It causes the string "John" to appear somewhere in the program memory (after it is compiled and executed, of course).It initializes the name argument to point to where the J character resides at (which is followed by the rest of the string in the memory). Dereferenci.. 더보기
C언어배우기 http://www.learn-c.org/en/Hello%2C_World%21 런씨닷오알지에서 씨언어 기초 배우자 더보기