First Program in C – test code
Write your test code in empty file. (How to open empty file)
main()
{
printf(“Hello User”);
}
Build and Run your code to press F9 function Key. Build is a process of converting source file to executable file. Process includes compilation and linking.
Note: F2 function Key use for Show / hide Messages pane where you View your error or warning message.
Test Code