CAP/MiniC/TP03/tests/provided/strcat/test_string01.c

16 lines
186 B
C
Raw Normal View History

2024-09-29 09:58:25 +02:00
#include "printlib.h"
int main(){
string x,y,z;
x = "ENS";
y = "De Lyon";
z = x + " " + y;
println_string(z);
return 0;
}
// SKIP TEST EXPECTED
// EXPECTED
// ENS De Lyon