Altera_Forum
Honored Contributor
19 years agostruct
struct test
{ int number; char name[20]; }; test t; in the nios ide the compiler says: test undeclared, why?struct test
{ int number; char name[20]; }; test t; in the nios ide the compiler says: test undeclared, why?{
int number;
char name[20];
};
test t;
in the nios ide the compiler says: test undeclared, why?
<div align='right'><{post_snapback}> (index.php?act=findpost&pid=17003)
--- quote end ---
--- Quote End --- http://forum.niosforum.com/work2/style_emoticons/<#EMO_DIR#>/smile.gif try typedef struct test { int number; char name[20]; }; test t;
--- quote start ---
<!--quotebegin-asegers@Jul 19 2006, 01:18 PM struct test
{
int number;
char name[20];
};
test t;
in the nios ide the compiler says: test undeclared, why?
<div align='right'><{post_snapback}> (index.php?act=findpost&pid=17003)
--- quote end ---
--- Quote End --- http://forum.niosforum.com/work2/style_emoticons/<#EMO_DIR#>/smile.gif try typedef struct test { int number; char name[20]; }; thanks, but still the same err. test t; <div align='right'><{post_snapback}> (index.php?act=findpost&pid=17006)</div> [/b] --- Quote End ---
Hi asegers,
I think you are right in declaration point of.. Just try out this one too:::: typedef struct test { int number; char name[20]; }t; And plz check one thing..the header file( In which you define this structure declaration) is must be include in your source file(*.c). so your source file get the declaration of this structure and your compiler will compile the code without error.. Best Regards, slsniosTO_BE_DONE
or type
'struct test t' --- Quote Start --- originally posted by asegers@Jul 19 2006, 06:18 AM struct test{
int number;
char name[20];
};
test t;
in the nios ide the compiler says: test undeclared, why?
<div align='right'><{post_snapback}> (index.php?act=findpost&pid=17003)
--- quote end ---
--- Quote End ---