Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rdemeter
GitHub Repository: rdemeter/so
Path: blob/master/lab1/intro-03-f1.c
224 views
1
#include "intro-03-util.h"
2
#include <stdio.h>
3
4
void f1(void)
5
{
6
printf("Fisierul curent este %s\n", __FILE__);
7
}
8
9
10