sorry for confusing you prgrammerinprogress but thanks for the reply !
well im troubling for hours now (got my brain fried) ^^
so i just decided to make the tileset not dynamic !
but instead of using constants for any picture(tile) of the clip i tried using an normal array.
But it still causes lots of trouble so i just decided to post the code here.
it's the code from lazy foo's site for clip blitting & sprite sheets:
http://lazyfoo.net/SDL_tutorials/lesson06/index.php
just the stuff in lined red is written by me
edit: strange it doesn't affect the source code window when i mark it red so i decided to post it blanco !
#include "SDL/SDL.h"
#include "SDL/SDL_image.h"
#include <string>
//Screen Attributes
const int SCREEN_WIDTH = 640;
const int SCREEN_HEIGHT = 480;
const int SCREEN_BPP = 32;
///The Surface (3 images we're gonna use)
SDL_Surface *dots = NULL;
SDL_Surface *screen = NULL;
//The event structure that will be used
SDL_Event event;
//Tile constants
const int TILE_WIDTH = 32;
const int TILE_HEIGHT = 32;
const int TOTAL_TILES = 1200;
const int TILE_SPRITES = 1200;
//The portions of the sprite map to be blitted
SDL_Rect clip [
TILE_SPRITES ];
Ok that's the big troubling part:
green is how it was in the tutorial!
red are my ideas so just replace my red text by the original (green)
Clip range for the left top
clip[0].x = 0;
clip[0].y = 0;
clip[0].h = 100;
clip[0].w = 100;
//clip range for the right top
clip[1].x = 100;
clip[1].y = 0;
clip[1].h = 100;
clip[1].w = 100;
//clip range for the left bottom
clip[2].x = 0;
clip[2].y = 100;
clip[2].h = 100;
clip[2].w = 100;
//clip range for the right bottom
clip[3].x = 100;
clip[3].y = 100;
clip[3].h = 100;
clip[3].w = 100;
//Clip the sprite sheet
void tilefunc()
{
int x = 0;
int y = 0;
int i;
int j;
for(i=1; i<=30; y=y+32, i++)
{
for(j=1; j<=40; x=x+32, j++)
{
clip[i*(40-j)].x = x;
clip[i*(40-j)].y = y;
clip[i*(40-j)].w = TILE_WIDTH;
clip[i*(40-j)].h = TILE_HEIGHT;
}
}
}
SDL_Surface *load_image(std::string filename)
{
//Temporary storage for the image that will be used
SDL_Surface *loaded_image = NULL;
//The optimized image that will be used
SDL_Surface *optimized_image = NULL;
//load the image
loaded_image = IMG_Load(filename.c_str() );
//if nothing goes wrong while loading the image
if (loaded_image != NULL)
{
//creat an optimized image
optimized_image = SDL_DisplayFormat(loaded_image);
//free the old image
SDL_FreeSurface(loaded_image);
//if the image was optimized just fine
if (optimized_image != NULL)
{
//Map the color key
Uint32 colorkey = SDL_MapRGB(optimized_image->format, 0, 0xFF, 0xFF);
//Set all pixels of color R 0, G 0xFF, B 0xFF to be transparent
SDL_SetColorKey(optimized_image, SDL_SRCCOLORKEY, colorkey);
}
}
//return the optimized_image;
return optimized_image;
}
void apply_surface(int x, int y,SDL_Surface *source, SDL_Surface *destination, SDL_Rect *clip = NULL)
{
//Make a temporary rectangle to hold the offset
SDL_Rect offset;
//give the rectangle to the offset
offset.x = x;
offset.y = y;
//Blit the surface
SDL_BlitSurface(source, clip, destination, &offset);
}
bool Init()
{
//initialize all SDL subsystems
if(SDL_Init(SDL_INIT_EVERYTHING) == -1)
{
return false;
}
//setup the screen
screen = SDL_SetVideoMode(SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_BPP, SDL_SWSURFACE);
//fill the screen white
SDL_FillRect(screen, &screen -> clip_rect, SDL_MapRGB(screen->format, 0xFF, 0xFF, 0xFF));
//if there was an error in setting up the screen
if (screen == NULL)
{
return false;
}
//Set the window caption
SDL_WM_SetCaption("EVENT TEST", NULL);
//if everything initialized fine
return true;
}
bool load_files()
{
//Load the image
dots = load_image("Tileset.png");
//if there was an error in loading the image
if (dots == NULL)
{
return false;
}
//if eerything loaded fine
return true;
}
void clean_up()
{
//Free thie image
SDL_FreeSurface(dots);
//QUITT SDL
SDL_Quit();
}
//MAIN !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
int main(int argc, char *args[]) // int main() won't work !!!
{
//make sure the programm waits for a quit
bool quit = false;
//initialize
if (Init() == false)
{
return 1;
}
//load files
if (load_files() == false)
{
return 1;
}
tilefunc();
//apply the surface to the screem
apply_surface(0, 0, dots, screen, &clip[0]);
OK ! here i show 4 tiles (my Tileset.png has 1200 tiles..the very first is black and the second is red) it should be 3 black 1 red right ? but it's just 1 black 
apply_surface(33, 0, dots, screen, &clip[0]);
apply_surface(66, 0, dots, screen, &clip[0]);
apply_surface(99, 0, dots, screen, &clip[1]);
//update the screen
if(SDL_Flip(screen) == -1)
{
return 1;
}
//while the user hasn't quit
while (quit == false)
{
//while there is an event to handle
while (SDL_PollEvent(&event))
{
//if the user Xed out the window
if (event.type == SDL_QUIT)
{
quit = true;
}
}
}
//free the surface and quit sdl
clean_up();
return 0;
}