Skip to content
Snippets Groups Projects
Commit 5108d48d authored by Anh Nguyen-Tuong's avatar Anh Nguyen-Tuong
Browse files

Fix compile error

parent e521a11e
No related branches found
No related tags found
No related merge requests found
#include <iostream>
using namespace std;
size_t my_strlen(char *arg)
{
auto count = 0;
int count = 0;
while (*arg!='\0')
{
count++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment