Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Punteros: strlen
//Title of this code //clang 3.6.0 #include <stdio.h> int strlen(char *s) { int n; for (n=0; *s!='\0'; s++) n++; return n; } int strlen2(char *s) { char *p=s; while(*p!='\0') p++; return p-s; } int main(void) { int i; char cadena[20]="mi mama me mima"; // ={'m', 'i', ....., '\0'}; printf("cadena=%s longitud=%d longitud2=%d", cadena, strlen(cadena), strlen2(cadena)); /* for (i=0; i<20; i++) printf("%c", cadena[i]); */ return 0; }
run
|
edit
|
history
|
help
0
Bucles: Suma de n números tecleados por el usuario
Find the length of largest subarray with equal number of 0's and 1's using recursion
lab7
Herout (67) - 15
scanf() and printf()
Vectores: Mayor lista numeros al azar
MyBlockQuicksort
Bucles: Suma de n números tecleados hasta introducir 0
coucou
Lee hora y suma un segundo