+ 3
What is your 1st program after hello word using any language
jff
6 Antworten
+ 5
It's been sometime ago, but my first language was C# and I was learning it from a book on WPF and XAML. So, the first code I wrote, as per tradition, was a "Hello World" block in Main(), printed to the form. The next code I wrote was some XAML, from the book demonstrating how to create and manipulate form controls using code, and then I wrote some C# to show the date and time in the control. Pretty cool stuff to play with, if you're interested in building desktop applications. Before finishing the book I broke away from it to write a WPF employee time entry application for the machine shop I was working for at the time, where employees could log the hours they worked on various jobs during their shifts and save that data to a CSV file that was emailed once per day to the shop manager. Pretty cool stuff. The places "Hello World" can lead to...awesome.
+ 3
maybe c=a+b😁
+ 1
@Ace, okay men,
#include<iostream>
int main(){
int a=10, b=13, c = a+b;
std::cout << c;
}