Operator

From Ta Wiki
Jump to navigation Jump to search

วิธีเรียกใช้แบบแปลกๆ

อันนี้เป็นตัวอย่างของโปรแกรม นำค่า a+b ไปใส่ในตัวแปร c

#include<stdio.h>
int main()
{
    int a,b,c;
    a=4;
    b=2;
    c = a.operator+(b);
    printf("%d",c);
    scanf(" ");
    return 0;
}