RTC to 4Bit LCD

So here is where i try to later the sketch to output the time and date to my lcd:

lcd.clear();
lcd.print(":");
Serial.print(minute, DEC);
Serial.print(":");
Serial.print(second, DEC);
Serial.print(" ");
Serial.print(month, DEC);
Serial.print("/");
Serial.print(dayOfMonth, DEC);
Serial.print("/");
Serial.print(year, DEC);
Serial.print(" Day_of_week:");
Serial.println(dayOfWeek, DEC);

And this is the compiler error im getting:

In function 'void loop()':
error: invalid conversion from 'const char*' to 'int

This is my first lcd and rtc project and its really hurting my head!

VR