You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #include "fcpp.hh"
-
- int main ()
- {
- char name[32] = "Peter Bastian";
-
- for (int i=0; name[i]!=0; i=i+1)
- print(name[i]); // einzelne Zeichen
- print(name); // ganze Zeichenkette
- }
|