I have written a code in which i included a header file
#include "buffer.h"
buffer_item buffer[buffer_size];
But while compiling it showing error
syntax error before 'buffer'
'buffer_item' undeclared (first use in this function)
Can u plz help me with this.
Thanks in advance
#include "buffer.h"
buffer_item buffer[buffer_size];
But while compiling it showing error
syntax error before 'buffer'
'buffer_item' undeclared (first use in this function)
Can u plz help me with this.
Thanks in advance
Comment