printf
Anonymous
c_cpp
10/06/2024 3:08 PM
216 B
13
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