[ create a new paste ] login | about

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

Abdus-Salam - C, pasted on Oct 30:
1
2
3
4
5
6
7
8
#include<stdio.h>
int count;
extern void write_extern();
main()
{ 
count=5; 
write_extern(); 
}


Output:
1
2
In function `main':
undefined reference to `write_extern'


Create a new paste based on this one


Comments: