#include "stdafx.h"
#include <stdio.h>
#include <conio.h>
int testa = 100;
int testb = 101;
int test()
{
if(testa > testb)
return 0;
else
return 1;
}
int _tmain(int argc, _TCHAR* argv[])
{
for(int k=0; k<5; k++)
{
static const int tbit = test();
printf("Result = %d\n", (tbit));
testa++;
testb--;
}
getch();
return 0;
}
O/P:
Result = 1
Result = 1
Result = 1
Result = 1
Result = 1
#include "stdafx.h"
#include <stdio.h>
#include <conio.h>
int testa = 100;
int testb = 101;
int test()
{
if(testa > testb)
return 0;
else
return 1;
}
int _tmain(int argc, _TCHAR* argv[])
{
for(int k=0; k<5; k++)
{
const int tbit = test();
printf("Result = %d\n", (tbit));
testa++;
testb--;
}
getch();
return 0;
}
O/P:
Result = 1
Result = 0
Result = 0
Result = 0
Result = 0
Related Post:
0 comments :
Post a Comment