Difference between revisions of "Malloc"

From Teknologisk videncenter
Jump to: navigation, search
m (Created page with "<source lang=cli> #include <stdio.h> #include <malloc.h> leg( char *array ) { int i; while( array[i] != 0) { putchar(array[i]); i++; } } int main(...")
 
m (added Category:C using HotCat)
Line 26: Line 26:
 
}
 
}
 
</source>
 
</source>
 +
 +
[[Category:C]]

Revision as of 11:10, 22 August 2016

#include <stdio.h>
#include <malloc.h>


leg( char *array ) {
    int i;

    while( array[i] != 0) {
        putchar(array[i]);
        i++;
    }
}

int main( void ) {
    char *pointer;
    int i;

    pointer = (char  *) malloc( sizeof(char) * 4);
    pointer[0] = 'H';
    pointer[1] = 'e';
    pointer[2] = 'j';
    pointer[3] = 0;
    leg( pointer );
    return(0);
}