Originally Posted By: Wjbender
ask jcl ..

Code:
obj.stool[0]=0;
//should this work ?



Code:
///////////////////////////////
#include <acknex.h>
#include <default.c>
///////////////////////////////

//works fine<----------
struct objects1
{
	int a[1024];	
}obj1,obj2;

//typedef doesnt work <------------
typedef struct objects2
{
	int a[1024];	
}objects2;

function main()
{
	obj1.a[0]=100;//<----- correct
	objects2.a[0]=100;//<----syntax error
}



Compulsive compiler