Skip to content

Instantly share code, notes, and snippets.

View shaunlgs's full-sized avatar
🌴
On vacation

Shaun Ling shaunlgs

🌴
On vacation
View GitHub Profile
@shaunlgs
shaunlgs / charToIntArray.c
Last active May 26, 2023 11:23
Convert char array into int array in C.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
static int intArray[255];
static char charArray[255] = "5 2 -3 4 0 9";
static int numInt = 0;
void charToIntArray() {
char *p;