Advertisement
florin88

Prog basse C

Mar 10th, 2014
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.77 KB | None | 0 0
  1. /*************************************************************/
  2. /*Nome Prog:  Prog basse C                        */
  3. /*Questo semplice programma in C, che puoi usare come base per capire come scrivere del codice in linguaggio C */                                                  
  4. /*Autore: florin88                                            */
  5. /*e-mail: ffinformaticus@gmail.com                            */
  6. /***********************************************************/
  7.  
  8. #include "stdio.h"  
  9.  
  10. int main() {
  11.  
  12.       printf("\n");      
  13.       printf("Una stringa\n");      
  14.       printf("Altra stringa\n");  
  15.       printf("\n");
  16.       printf("Numero: %d\n", 7);  
  17.       printf("\n");      
  18.       printf("2 + 2 รจ uguale a 4? %d\n", (2 + 2 == 4));        
  19.  
  20. return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement