Difference between revisions of "User:Renzo"

From Sistemi Operativi
Jump to navigation Jump to search
m
m
Line 7: Line 7:
 
<syntaxhighlight lang="python">
 
<syntaxhighlight lang="python">
 
#include <stdio.h>
 
#include <stdio.h>
int main(int argc, char*argv[])
+
int main(int argc, char *argv[])
 
{
 
{
 
   printf("hello world\n");
 
   printf("hello world\n");
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 12:42, 24 October 2013

This is a test in python:

print('hello world')

This is a test in C:

#include <stdio.h>
int main(int argc, char *argv[])
{
   printf("hello world\n");
}