Last active
October 4, 2021 07:12
-
-
Save sachith-1/1989c49ed9d766b6e5cc527f198f7613 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void dataToArray(int* a, int n){ | |
int i; | |
for(i = 0;i < n; ++i){ | |
a[i]=i; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment