79608111

Date: 2025-05-06 06:35:56
Score: 1
Natty:
Report link
#include <iostream>
#include <cstdio>
using namespace std;
int main(){
    char *foo = "hello";
    char *test = "how are";
    char *concat;
    sprintf(concat, "%s%s", foo, test);
    //int num = 100;
    //sprintf(concat, "%s%s%n", foo, test, num);
    cout << concat;
    return 0;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AVick etc