printf

 avatar
unknown
c_cpp
5 months ago
160 B
3
Indexable
// add include stdio.h so we can use printf
#include <stdio.h>

int main() {
    // call printf
    printf("This is using library function!\n");
    return 0;
}
Editor is loading...
Leave a Comment