[ create a new paste ] login | about

Link: http://codepad.org/Agekd8U6    [ raw code | output | fork ]

clyfe - C, pasted on Jun 4:
1
2
3
4
5
6
7
8
#include <stdlib.h>
#include <stdio.h>

int main(){
    printf("str: %.*s\n", 2, "abcdef");

    return 0;
}


Output:
1
str: ab


Create a new paste based on this one


Comments: