C++

warning: Creating default object from empty value in /home/www/virtual/phaisarn.com/sun/htdocs/modules/taxonomy/taxonomy.pages.inc on line 33.

แปลง Source code ภาษา c++ ให้เป็น html

 โปรแกรม cpphtml ใช้แปลง source code ภาษา c ให้เป็นไฟล์ html ได้ง่ายๆ ด้วยการพิมพ์คำสั่งเดียว

เช่น มีไฟล์ hello.cpp ดังรูปด้านล่าง

Linked List Class

#include <iostream>

using namespace std;

class linklist
{
     private:

             struct node
         {
              int data;
            node *link;
         }*p;

   public:

CSharp using C++ DLL

ต่อเนื่องจาก C++ Dll Win32 Console Project 

ในบทความนี้เป็นการใช้ C# เรียกใช้ DLL ที่เขียนจากภาษา C++

1. สร้างโปรเจ็กส์ C# เพื่อใช้งาน Dll ชื่อ CSConsole เป็นแบบ Console Application

Syndicate content