I did not think lite-c was object orientated.

I was going off of the the tutorial(workshop) # 7, which was listed like this:

////////////////////////////////////////////////////////////////////
#include <acknex.h>
#include <default.c>
////////////////////////////////////////////////////////////////////
STRING* aloha_str = "Welcome to Paradise Island!";

TEXT* greetings_txt =
{
pos_x = 300;
pos_y = 250;
string (aloha_str);
flags = VISIBLE;
}
////////////////////////////////////////////////////////////////////
function main()
{
video_mode = 7;
screen_color.blue = 150;
}

and wanted to center the aloha_str.

I dont know the restrictions of "pointers", as i'm a run-time programer - vb, php, tcl...ect...

So, I guess the to-self question is that "ALL *pointers* act like structures where I can modify/assign values outside the structure?"