C
From Abap2Java
[edit]
ABAP
Predefined Data Type for Character Strings with a predefined fixed length.
| Default | 0 |
| Size | 8 or 16 Bit per Character (Unicode) |
| Lenght | 1 - 65535 |
DATA c(25) TYPE C "string with 15 characters. c = 'a string with 25 characters'.
[edit]
Java
see string, char (single character)
String s = "a string with any lenth";

