Subscribe to:
Post Comments (Atom)
Financial Year Oracle PLSQL Program
CREATE OR REPLACE function FINANCIAL_YEAR(p_date DATE) return varchar2 IS v_first varchar2(4); v_second varchar2(4); v_year...
-
Data warehouse systems have gained popularity as companies from the most varied industries realize how useful these systems can be...
-
List of Projects of Project for Computer Science and Application Students 1. Railway Reservation & Inquiry System 2. ...
In operator overloading why we use this strcture-> Means= [temp.a=a+ob.a]
ReplyDeleteHere a example also display.
complex operator+(complex ob)
{
complex t;
t.a=a+ob.a;
t.b=b+ob.b;
return(t);
}