You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

vulnerable.cpp 212 B

2 years ago
12345678910111213141516
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4. char name[10];
  5. cout << "Please enter your name: ";
  6. cin >> name;
  7. cout << "Your name is: " << name << endl;
  8. }

No Description

Contributors (1)