Serial Print

I found this snippet of code which triggers an action at every 25past the hour which works fine, however I am trying to Serial.print this code but all I get is 0.

void Dose48Day1()
{
  TimeNow = ((hour()*3600) + (minute()*60) + second());
  if ((TimeNow % 3300) == 0)    //ON @ 25past the hour
  {
   [color=red]Serial.println((TimeNow % 3300) == 0); //PRINTS 0[/color]
    LEDDOSER1.setColor(Blue);
    LEDDOSER1.on();
    DOSING1 = timer.setTimeout(D1P48, Doser1Off);
    Blynk.virtualWrite(V0, "DOSER ON");
  }
}

How do I get the serial print to print the TimeNow with the 25past the hour?

Serial.println((TimeNow % 3300) == 0); //PRINTS 0

Why don't you just print TimeNow ?

TimeNow prints ok but what I want to print is the TimeNow from midnight with a modulo of 25 past the hour in other words eg. 1.25, 2.25 ect

Please post your complete program. As it stands we have no idea what data type TimeNow is