Name: Anonymous 2008-02-23 8:23
Here's my code:
But it doesn't compile. Why?
%:include <stdio.h>
%:ifndef BUFSIZE
%:define BUFSIZE 512
%:endif
void copy(char d<::>, const char s<::>, int len)
<%
while (len-- >= 0)
<%
d<:len:> = s<:len:>
%>
%>But it doesn't compile. Why?