C++ Notes3
C++ Notes3
wchar_t
size of wchar_t:
2 bytes on 16 bit compiler
4 bytes on 32 and 64 bit compiler
on 64bit compiler
wchar_t ch;
wchar_t s[10];
#include<iostream>
using namespace std;
int main()
{
cout<<"Hello";
}
while(1) while(true)
{ {
} }
char str[20];
char s[30]="vector";
char s1[]="abcd";