Kaisi Yeh Yaariyaan 6th March 2015 Written Episode, Written Update on TellyUpdates.com
Manik brings Nandini out of the pool, she looks around and asks what is this all. He says if he had called her to college, show wouldn’t have come there. She looks at him angrily.
The nurse brings thermometer to Abhimanyu, he asks why is it so sweet. It was Mukti in nurse’s dress, she says it has sweet in it. She puts colour on his face. He says she has been smart like him. She says she already was, she says every year they celebrate Holi at Space, but she has planned a day here. He says this is what he feared, she is attending the Holi there. She says what if this is their last… He leaves her hand, and says may be it is their last, that is why he wants her to spend this as well with her friends so that she doesn’t have any memories of Holi with her.
Manik comes out, Nandini was drying her hair. Mukti comes, Manik asks about everyone else. Mukti says she is coming from hospital and asks why the venue has changed. Manik looks around for an answer and spots Cabir and Navya coming. Navya asks Nandini how she came here, Manik says aloud a Hi to her. Cabir offers him all the jalebi packed, Nandini gives it to Mukti and says they must get rid of all the anger. Mukti takes it. Neonika comes there and angrily asks how dare he broke a 12 year old tradition of Space to celebrate Holi party. All the friends leave, Manik says to Neonika he isn’t answerable to her in any way. She leaves.
The principal appreciates Aaliya. She says every year she used to celebrate for Manik… she stops and looks at Dhruv. Manik comes and asks is all done, they nod. He says they must look at Nandini’s face.
Click here for full FRIDAY spoilers
Cabir listens Nandini well wishing Navya for deciding to keep the baby. Cabir says she hasn’t told her mom and he has called her here. He says it was good, because the baby will be born at his home, he will do potty at his home even. Navya comes and puts a lot of colour on his face, Nandini asks Navya not to because she doesn’t play Holi. Nandini says Manik wanted to be nasty with her, Navya asks didn’t she take any revenge. Cabir comes from behind and put paint on Manik’s head, Nandini comes with a water gun and asks if she can. He says water, and water gun is a courageous move. She puts water on his face, there was red colour all around. He asks if it was Cabir, Cabir says who else could it be and it is Holi. Nandini says sorry to Manik, and runs away. Manik follows her, Pandit ji watches them.
Nandini runs inside, she turns to see Manik already inside. She throws red colour on his face, and runs. He takes her dupatta off and clears his face with it. She tries to escape but he gets her with her dupatta and hold her close. She says he lied to chachi to call her here. Manik says her chachi lied, he just ask her to send her here. Nandini says if he only had to out colour on her, why he brought all the party here, Neonika is so angry. He leaves her saying he doesn’t want to talk about Neonika.
Cabir and Navya were drunk. They say Manik and Nandini are only concentrating on each other. Navya says they only have the solutions to each other.
Nandini tells Manik she heard their converstion. She understands why he doesn’t want to talk about her. She asks he did it for her. He says yes, gets her to wall and brings his face near to her. He says because… and throws water with water gun onto her, saying he loves her to be angry. Nandini leaves angrily.
Cabir was drunk, he makes an announcement that his friend has got lost with someone. Nandini appears, he says his friend will just be here. He spots Manik, and calls him to bar counter. Manik comes to Cabir and says since he became DJ, he doesn’t leave the mike.
Mukti was texting Abhimanyu, and was worried that he isn’t fine. She hopes he is. Abhimanyu calls he is fine. She turns to see fab5 stood behind, they give way to Abhimanyu. They all ask Mukti if she is happy, she says she didn’t know how will they react about Abhimanyu, but she now regrets. She says I love you all and hugs Abhimanyu.
PRECAP: They all are celebrating Holi.
Update Credit to: Sona
2,440 Comments
no no I am nt @@
xhjt?
he he he ..stp cpng my name
okay play wid my name as much as u lyk………..i hv to go nw
#include
main()
{
int n, c;
printf(“Enter a number
\n”);
scanf(“%d”, &n);
if ( n == 2 )
printf(“Prime number.
\n”);
else
{
for ( c = 2 ; c <= n – 1 ;
c++ )
{
if ( n % c == 0 )
break;
}
if ( c != n )
printf("Not prime.
\n");
else
printf("Prime
number.\n");
}
return 0;
}
Example 6 – command line
arguments
#include
main(int argc, char *argv[]
)
{
int c;
printf(“Number of
command line arguments
passed: %d \n”, argc);
for ( c = 0 ; c < argc ; c++)
printf("%d. Command
line argument passed is %
s \n", c+1, argv[c]);
return 0;
}
Above c program prints
the number and all
arguments which are
passed to it.
Example 7 – Array
program
#include
main()
{
int array[100], n, c;
printf(“Enter the
number of elements in
array \n”);
scanf(“%d”, &n);
printf(“Enter %d
elements\n”, n);
for ( c = 0 ; c < n ; c++ )
scanf("%d", &array[c])
;
printf("Array elements
entered by you are:\n");
for ( c = 0 ; c < n ; c++ )
printf("array[%d] = %
d\n", c, array[c]);
return 0;
}
Example 8 – function
program
#include
void my_function();
main()
{
printf(“Main function.
\n”);
my_function();
printf(“Back in function
main.\n”);
return 0;
}
void my_function()
{
printf(“Welcome to my
function. Feel at home.\n”)
;
}
Example 9 – Using
comments in a program
#include
main()
{
// Single line comment
in c source code
printf(“Writing
comments is very useful.
\n”);
/*
* Multi line comment
syntax
* Comments help us to
understand code later
easily.
* Will you write
comments while
developing programs ?
*/
printf(“Good luck c
programmer.\n”);
return 0;
}
Example 10 – using
structures in c
programming
#include
struct programming
{
float constant;
char *pointer;
};
#include
main()
{
int n, c;
printf(“Enter a number
\n”);
scanf(“%d”, &n);
if ( n == 2 )
printf(“Prime number.
\n”);
else
{
for ( c = 2 ; c <= n – 1 ;
c++ )
{
if ( n % c == 0 )
break;
}
if ( c != n )
printf("Not prime.
\n");
else
printf("Prime
number.\n");
}
return 0;
}
Example 6 – command line
arguments
#include
main(int argc, char *argv[]
)
{
int c;
printf(“Number of
command line arguments
passed: %d \n”, argc);
for ( c = 0 ; c < argc ; c++)
printf("%d. Command
line argument passed is %
s \n", c+1, argv[c]);
return 0;
}
Above c program prints
the number and all
arguments which are
passed to it.
Example 7 – Array
program
#include
main()
{
int array[100], n, c;
printf(“Enter the
number of elements in
array \n”);
scanf(“%d”, &n);
printf(“Enter %d
elements\n”, n);
for ( c = 0 ; c < n ; c++ )
scanf("%d", &array[c])
;
printf("Array elements
entered by you are:\n");
for ( c = 0 ; c < n ; c++ )
printf("array[%d] = %
d\n", c, array[c]);
return 0;
}
Example 8 – function
program
#include
void my_function();
main()
{
printf(“Main function.
\n”);
my_function();
printf(“Back in function
main.\n”);
return 0;
}
void my_function()
{
printf(“Welcome to my
function. Feel at home.\n”)
;
}
Example 9 – Using
comments in a program
#include
main()
{
// Single line comment
in c source code
printf(“Writing
comments is very useful.
\n”);
/*
* Multi line comment
syntax
* Comments help us to
understand code later
easily.
* Will you write
comments while
developing programs ?
*/
printf(“Good luck c
programmer.\n”);
return 0;
}
Example 10 – using
structures in c
programming
#include
struct programming
{
float constant;
char *pointer;
};
ag
well ammy p-rove this ppl dat u r mad……………..
ye saab kaha se copy kar rhe ho…………??
Example 9 – Using
comments in a program
#include
main()
{
// Single line comment
in c source code
printf(“Writing
comments is very useful.
\n”);
/*
* Multi line comment
syntax
* Comments help us to
understand code later
easily.
* Will you write
comments while
developing programs ?
*/
printf(“Good luck c
programmer.\n”);
return 0;
}
Example 10 – using
structures in c
programming
#include
struct programming
{
float constant;
char *pointer;
};
main()
{
struct programming
variable;
char string[] =
“Programming in
Software Development.”;
variable.constant = 1.23;
variable.pointer = string;
printf(“%f\n”,
variable.constant);
printf(“%s\n”,
variable.pointer);
return 0;
}
Example 11 – c program
for Fibonacci series
#include
main()
{
int n, first = 0, second =
1, next, c;
printf(“Enter the
number of terms\n”);
scanf(“%d”,&n);
printf(“First %d terms of
Fibonacci series are :-
\n”,n);
for ( c = 0 ; c < n ; c++ )
{
if ( c <= 1 )
next = c;
else
{
next = first + second;
first = second;
second = next;
}
printf("%d\n",next);
}
return 0;
}
Example 12 – c graphics
programming
#include
#include
main()
{
int gd = DETECT, gm;
initgraph(&gd, &gm,”C:\
\TC\\BGI”);
outtextxy(10,20,
“Graphics source code
example.” );
circle(200, 200, 50);
setcolor(BLUE);
line(350, 250, 450, 50);
you hv computer xam on monday??
I DNT UNDERSTAND COMPUTER VRY WELL…….
ohhh gooood
I DNT UNDERSTAND
COMPUTER VRY
WELL…….
okayy final byee.khelo meri user name se jo bhi ho………
ohhh gooood
okayy final byee.khelo
meri user name se jo
bhi ho………
bbbbbt I undrstnddd it he is my bff soooo caaaaan I helpppp uuuu
bbbbbt I undrstnddd it
he is my bff soooo
caaaaan I helpppp
uuuu
Yeh toh mjhe cmputer sikha ke chodega
A
B
Fhhjkkjhvvvccccx
Hehehe hahaha
anyyyyy 1 heeerrre
Hello I m here
Any1 here?
Oh God what is happening here!!!
is there anyone here ?
Hi carron!
Hey Angell !!!!!!
r u real sam?