Quantcast
Channel: C – Phaisarn Sutheebanjard
Browsing latest articles
Browse All 12 View Live

C language – compare file

บอกตำแหน่งเริ่มต้นที่ไฟล์ทั้ง 2 ไฟล์ แตกต่างกัน //Compare File #include <stdio.h> #include <stdlib.h> int main(int argc, char *argv[]) { FILE *fp1, *fp2; char ch1, ch2, same; unsigned long...

View Article


QueryPerformanceCounter()

ฟังก์ชั่น QueryPerformanceCounter() ใช้จับเวลาการทำงาน เป็นฟังก์ชั่นที่มีใน Windows ส่วนใน Linux ต้องเขียนฟังก์ชั่นนี้เอง โดย Code แสดงดังข้างล่างนี้ This function basically recreates the win32...

View Article


QR Code: in Python

libpng12-0 libpng12-dev pkg-config Install libqrencode http://fukuchi.org/works/qrencode/index.en.html Libqrencode is a C library for encoding data in a QR Code symbol, a kind of 2D symbology that can...

View Article

How to mix C and C++ ใน VC2005

เมื่อนำ code ภาษา c (ไฟล์ .c) มารัน อยู่ใน Project เดียวกันกับ .cpp แล้วเกิด Error ดังนี้ /Ycstdafx.h command-line option was not found in the source file ให้แก้ไขด้วยการเพิ่ม #include “stdafx.h”...

View Article

S_ISDIR

S_ISDIR S_ISDIR checks the file mode m to see whether the file is a directory. If so it returns True freepascal.org #ifndef S_ISDIR #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR) #endif #ifndef...

View Article


SWATH (Smart Word Analysis for Thai)

————- SWATH (Smart Word Analysis for THai) ————- ผู้พัฒนาเวอร์ชั่นแรก cs.cmu.edu/~paisarn/ hlt.nectec.or.th ผู้นำมาพัฒนาต่อ (ตอนนี้เวอร์ชั่น 0.4.1) http://thep.blogspot.com/...

View Article

Linked List Class

#include <iostream> using namespace std; class linklist { private: struct node { int data; node *link; }*p; public: linklist(); void append( int num ); void add_as_first( int num ); void...

View Article

Computer Vision Algorithm Implementations

Computer Vision Algorithm Implementations Computer Vision Software

View Article


Java Native Interface (JNI)

Java supports native codes via the Java Native Interface (JNI). 1. JNI with C 1.1: Write a Java Class that uses C Codes – hello.java 1 1.2: Create the C/C++ Header file – hello.h 2 1.3: C...

View Article


รวมโค๊ดภาษาซี

Control statements คำนวณผลรวมของ 1-10 รับตัวเลขจากผู้ใช้ แล้วตรวจสอบว่าเป็นเลขคู่ (แสดงคำว่า Even ) หรือเลขคี่ (แสดงคำว่า Odd) ฟังก์ชันหาค่าเฉลี่ยของเลขจำนวนเต็ม 2 จำนวน (คืนค่าเป็นทศนิยม)...

View Article
Browsing latest articles
Browse All 12 View Live