[Solved] printf() function in C


Read the printf spec: First format string, then parameters.

#include <stdio.h>

int main(){
    long mn = 166662;
    printf("Howdy, I am %ld i hope that you had a better better day than I am having.\n", mn );
    return 0;
}

2

solved printf() function in C