Advertisement
Dany1858

Inf. Esercizio 1

Nov 8th, 2013
424
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.56 KB | None | 0 0
  1. /*
  2.  ============================================================================
  3.  Name        : Esercizio1.c
  4.  Author      : Dany1858
  5.  Version     :
  6.  Copyright   : Your copyright notice
  7.  Description : Hello World in C, Ansi-style
  8.  ============================================================================
  9.  */
  10. /*
  11. Utilizzando il compilatore, scrivere/compilare/eseguire un programma in linguaggio
  12. C che visualizzi su schermo la scritta β€œHello world!”.
  13. */
  14.  
  15. #include <stdio.h>
  16. #include <stdlib.h>
  17.  
  18. void main ()
  19. {
  20.     printf ("Hello World"); //stampo a video
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement