Untitled

 avatar
unknown
c_cpp
a year ago
334 B
11
Indexable
#include <windows.h>
#include <winhttp.h>
#include <synchapi.h>
#include <wincrypt.h>

#include <stdio.h>

int main()
{
    printf("foo\n");
    printf("%s\n", "s test");
    printf("%S\n", L"S test");
    printf("bar\n");
    return 0;
}

//when running this, the "S" line never executes, but "bar" executes normally.
Editor is loading...
Leave a Comment