Hi there ! I am Chinmay Garud . In this blog we would be doing some basic and easy programs using Embedded C . If you like it please do share it with your friends and family. I'd be grateful for any comments or suggestions you might have
Hello World
Get link
Facebook
X
Pinterest
Email
Other Apps
Code :
#include <stdio.h> // Include standard input/output int main() // Main Function { printf ("Hello world"); // Print ( Hello World ) }
Comments
Post a Comment