Skip to main content

ARJUN -Same Girl (feat. Guru)

ARJUN- Same Girl (feat. Guru) 




LYRICS:


VERSE 1

ARJUN
I met this girl only last saturday
Since then I've been living in a fantasy
She and I fell in love instantly

GURU
Tenu mein apni baare dasdan
Hai ohde jehi sohni
Tu vekhi nhi honi
Lakk patla rang gora

ARJUN
You just gotta see her
The girl is a winner
Ain't no competition, she holding the crown

GURU
Hai ohde kol Audi
Te paundi Armani
Dil le gayi marjaani

ARJUN
She only wears the best
She's rocking her Chanel
It's almost like we're dating the same, the same girl

CHORUS

GURU
Teri akhiyan ch pyar hai mera
Tu hi te ik yaar hai mera
Tere naal din raat rahan mein
Jiva te tere naal maran mein

ARJUN
Hate to admit it but we fell for the same girl
Can't believe that we fell for the same girl
Don't wanna say it but you know it's the same girl
We've been loving the same girl

VERSE 2

ARJUN
Tell me more, tell me more about this girl
She seems to be a little too familiar
All the things that you've been saying 'bout her
Remind me of my own, of my own lover

ARJUN
She's got the cutest little dimples
She makes it look so simple
I'm telling you she's one of a kind

GURU
Ohdiyan vi gallan vich toye
Te ohde asi hoye
Ohde wargi na koi

ARJUN
Bro I've got this feeling
That you and me are dealing
With the same girl and she's playing us both

GURU
Mainu v eho lagge
Asi jehri kudi piche
Saade naal khed di

CHORUS

GURU
Teri akhiyan ch pyar hai mera
Tu hi te ik yaar hai mera
Tere naal dil raat rahan mein
Jiva te tere naal maran mein

ARJUN
Hate to admit it but we fell for the same girl
Can't believe that we fell for the same girl
Don't wanna say it but you know it's the same girl
We've been loving the same girl



ARJUN
She's been leading us along
We've been playing the same song
And it's time we set this straight once and for all

CHORUS

GURU
Teri akhiyan ch pyar hai mera
Tu hi te ik yaar hai mera
Tere naal dil raat rahan mein
Jiva te tere naal maran mein

ARJUN 
You're the only one
I gave you all my love
Are you lying next to him
Are you loving the same, loving the same
I only live for you
Girl I would have died for you
Are you loving him the same?
We've fallen for the same, same girl

Comments

Popular posts from this blog

Binary Converter - Netbeans Java Codes

You can also download text file of this code here:   BinaryConverter.txt Java Code: public class BinaryConv { public static void main(String[] args) { Scanner in = new Scanner(System.in); int decimalNumber; String binaryNumber; System.out.print("Enter a positive integer: "); decimalNumber = in.nextInt(); if (decimalNumber <= 0) System.out.println("ERROR: entered integer is nonpositive."); else { binaryNumber = ""; // algorithm step by step // initial: binaryNumber = "", decimalNumber = 123 // step 1 : binaryNumber = "1 ", decimalNumber = 61 // step 2 : binaryNumber = "11 ", decimalNumber = 30 // step 3 : binaryNumber = "011 ", decimalNumber = 15 // step 4 : binaryNumber = "1011 ", decimalNumber = 7 // step 5 : binaryNumber = "1 1011 ", decimalNumber = 3 // step 6 : binaryNumber = "11 1011 ", decimalNumber = 1 // step 6 : binaryNumber = "111 1011 ",...

Javax Code for Playing Music:

Javax Code for Playing Music: OUTPUT: ________________________________________________________________ Just Copy and Paste and Change the variable name respectively: ________________________________________________________________ ________________________________________________________________ Buttons: 1. jButton1 : Open Music File 2. jButton2 : Play 3, jButton3 : Stop 4. jButton4 : Pause ________________________________________________________________ import java.io.File;     import java.io.IOException;     import java.net. MalformedURLException;     import javax.sound.sampled. AudioInputStream;     import javax.sound.sampled. AudioSystem;     import javax.sound.sampled.Clip;     import javax.sound.sampled. LineUnavailableException;     import javax.sound.sampled. UnsupportedAudioFileException; public class Music extends javax.swing.JFrame {     /** ...

Get Current System Time & Date - Netbeans Java Code

Run Shot of Current System Time & Date Java Code: import java.text.SimpleDateFormat; import java.util.Date; public class Datetimemonth { public static void main(String[] args) { Date now = new Date(); System.out.println("toString(): " + now); // dow mon dd hh:mm:ss zzz yyyy // SimpleDateFormat can be used to control the date/time display format: // E (day of week): 3E or fewer (in text xxx), >3E (in full text) // M (month): M (in number), MM (in number with leading zero) // 3M: (in text xxx), >3M: (in full text full) // h (hour): h, hh (with leading zero) // m (minute) // s (second) // a (AM/PM) // H (hour in 0 to 23) // z (time zone) SimpleDateFormat dateFormatter = new SimpleDateFormat("E, y-M-d 'at' h:m:s a z"); System.out.println("Format 1: " + dateFormatter.format(now)); dateFormatter = new Sim...