Learn the powerful enterprise adaptable database:

Getting Started With ADABAS & Natural

Saturday, June 1, 2013

Hello World Program Flow Chart


--
Flow Chart:


To learn on how to automatically generate Flowchart from codes, follow these steps.
--

Pseudo Code:

1. BEGIN
2. PRINT "Hello World"
3. END
--

C Language sample code:

#include <stdio.h>
int main(void) { 
   printf("Hello World");
   return 0;
}
--
C Language sample output:

--

No comments:

Post a Comment