[ create a new paste ] login | about

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

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

#define SABIT1 "Bu bir Stringdir.\n"
const char *SABIT2 = "Bu bir Stringdir.\n";

int main() {
    printf(SABIT1); 
    printf("%s",SABIT2);
    return 0;

}


Output:
1
2
Bu bir Stringdir.
Bu bir Stringdir.


Create a new paste based on this one


Comments: