aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_MAINPRINTF.c
blob: 62ddab6e0c851d105c56c0c72f2f557c2c81632c (plain)
1
2
3
4
5
6
7
8
int printf(const char *format, ...);

int main()
{
    char input[50] = {'H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd', };
    printf(input);
    return 0;
}