Embedded,C Programming,C,Linux

Saturday, October 27, 2018

C++ Hello World


#include <iostream>
 
int main()
{
std::cout << "Hello world!" << std::endl;
return 0;
}

No comments:

Post a Comment

Finding COM PORT in ubuntu

 Hello ,In this post we see how to find COM port/Serial port in Ubuntu. Items Required 1.Usb to TTL cable  Step 1: Finding COM Port in Compu...