Misplaced Pages

Jai

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.

Jai or JAI may refer to:

Abbreviations and codes

People

  • 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

Other uses

See also

Topics referred to by the same term Disambiguation iconThis disambiguation page lists articles associated with the title Jai.
If an internal link led you here, you may wish to change the link to point directly to the intended article.





  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();

}

Categories: