aboutsummaryrefslogtreecommitdiffstats
path: root/test/regression/sizeof2.c
blob: 7b2f189eb15eda15d7716fb9ba5233278899aa0c (plain)
1
2
3
4
5
6
7
8
9
#include <stdlib.h>
#include <stdio.h>

int main()
{
  printf("%d\n", (int) sizeof("abcd"));
  printf("%d\n", (int) (sizeof(L"abcd") / sizeof(wchar_t)));
  return 0;
}