Posts by WoLfulus • 271 points
2 posts
-
11
votes1
answer3034
viewsA: How to email in C?
You can use the Curl library if you want to send emails via SMTP. Follow an example taken from their own website: #include <stdio.h> #include <string.h> #include <curl/curl.h> int…
-
4
votes3
answers29291
viewsA: Creating your own header file
Header files are only used to define what you want to use, for example a function int soma (int x, int y) { return x + y; } no header would look like int soma (int x, int y); and no . c/. cpp would…