type ေတြပါ၀င္ပါတယ္.သူတို႔ေတြကေတာ့ ကိန္ေသေတြလို႔ပဲေျပာရမွာေပါ့..ဥပမာ- a and b ကို variable ေပးမယ္ဆိုပါဆို.. (int a,char b)ဒီ a and b ဟာ variable type ေတြကေတာ့ မတူၾကပါဘူး..တစ္ခုက int ျဖစ္ျပီး တစ္ခုက char ျဖစ္ၾကပါတယ္..
#include <iostream>
using namespace std;
main()
{
int a = 100;
char b ;
b ='C';
cout<< "result of int a is ="<< a <<endl;
cout << "result of char b is ="<< b ;
cin.get();
}
သူ႔ကုိ .cpp နဲ႕ save ျပီးေတာ့ run ၾကည့္ရင္အေျဖကေတာ့..
data type ေတြကေတာ့ c tutorials မွာပါ၀င္ပါတယ္..
No comments:
Post a Comment