Dashboard Temp Share Shortlinks Frames API

abh - HTMLify profile

files of /abh/learning/c/BPPL/Phase-1/pointers/

strlen.c /abh/learning/c/BPPL/Phase-1/pointers/strlen.c
93 Views
0 Comments
#include <stdio.h>

int strlen(const char str[]) {
int len = 0;
while (str[len] != NULL) {
len++;
}
retu
swap.c /abh/learning/c/BPPL/Phase-1/pointers/swap.c
129 Views
0 Comments
#include <stdio.h>

void swap(int *a, int *b) {
int t;
t = *a;
*a = *b;
*b = t;
}