[ create a new paste ] login | about

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

C, pasted on Jul 17:
1
2
3
4
5
6
7
8
9
10
11
#include<stdio.h>

void display(char *string)
{
        printf("%s",string);
}
int main()
{
        char string[]="Hello World";
        display(string);
}


Output:
1
Hello World


Create a new paste based on this one


Comments: