Jai or JAI may refer to:

Abbreviations and codes

edit

People

edit
  • Jason Rowe (born 1969), British pop/soul singer who recorded under the name Jai in the late 1990s
  • Jai (actor) (born 1985), Indian Tamil film actor
  • Jai Brooks, comedian from the Australian YouTube group, The Janoskians
  • Jai Courtney (born 1986), Australian actor
  • Jai Ingham (born 1993), Australian football player
  • Jai Koutrae (born 1975), Australian actor
  • Jai Lucas (born 1988), American basketball coach and former professional and collegiate basketball player
  • Jai McDowall (born 1986), Scottish singer who won the fifth series of Britain's Got Talent
  • Jai Rodriguez (born 1979), American actor and musician, known for the TV show Queer Eye for the Straight Guy
  • Jai Taurima (born 1972), long jump champion of Australia
  • Jai Waetford (born 1999), Australian recording artist who came third on the fifth season of The X Factor Australia

Films

edit

Other uses

edit

See also

edit





  1. include<iostream>

using namespace std;

class Complex {

   int a,b;
   public:
   void setData(int x, int y)

{

   a=x;
   b=y;

} void showData() {

   cout<<"a: "<<a<<"b: "<<b;

} Complex operator() //an argument is passed {

   Complex temp;
   temp.a=-a;
   temp.b=-b;
   return temp;

} }; void main() {

   Complex c1, c2;
   c1.setData(3,4);
   c2=c1.operator-(); //uniary operator
   c2.showData();

}