cs_lang:c
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| cs_lang:c [2011/07/12 10:47] – [Read a file] cedric | cs_lang:c [2012/09/30 23:32] (current) – cedric | ||
|---|---|---|---|
| Line 15: | Line 15: | ||
| { | { | ||
| printf(" | printf(" | ||
| - | |||
| - | |||
| } | } | ||
| </ | </ | ||
| Line 29: | Line 27: | ||
| $ ./ | $ ./ | ||
| Hello World | Hello World | ||
| + | </ | ||
| + | |||
| + | |||
| + | ===== Increment a number ===== | ||
| + | <code c> | ||
| + | #include " | ||
| + | |||
| + | char line[100]; | ||
| + | int | ||
| + | |||
| + | int main() | ||
| + | { | ||
| + | printf(" | ||
| + | fgets(line, sizeof(line), | ||
| + | sscanf(line, | ||
| + | |||
| + | printf(" | ||
| + | |||
| + | return 0; | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | <code bash> | ||
| + | $ gcc -Wall test1.c | ||
| + | cedric@debian: | ||
| + | Enter a value:41 | ||
| + | Inc: 42 | ||
| + | </ | ||
| + | |||
| + | ==== Equivalent in python ==== | ||
| + | <code python> | ||
| + | >>> | ||
| + | ... value = raw_input(" | ||
| + | ... print " | ||
| + | ... | ||
| + | >>> | ||
| + | Enter a value:41 | ||
| + | Inc: 42 | ||
| </ | </ | ||
| Line 40: | Line 76: | ||
| main() | main() | ||
| - | |||
| { | { | ||
| - | char line[80]; | + | char line[1024]; |
| fr = fopen (" | fr = fopen (" | ||
| /* " | /* " | ||
| Line 55: | Line 89: | ||
| </ | </ | ||
| - | ===== Equivalent in python | + | ==== Equivalent in python ==== |
| <code python> | <code python> | ||
| for line in open(" | for line in open(" | ||
| print line | print line | ||
| </ | </ | ||
cs_lang/c.1310460462.txt.gz · Last modified: by cedric
