Forum: MySQL Aug 27th, 2009 |
| Replies: 3 Views: 967 select * from <tn> where year(date_mem)='yyyy'; |
Forum: C Sep 5th, 2007 |
| Replies: 2 Views: 783 #include <stdio.h>
int main()
{
float f=0.0f;
int i;
for(i=0;i<10;i++)
f = f + 0.1f; |
Forum: C Sep 5th, 2007 |
| Replies: 6 Views: 1,249 #include <stdio.h>
int main()
{
int i=43;
printf("%d\n",printf("%d",printf("%d",i)));
return 0;
} |
Forum: C++ Aug 20th, 2007 |
| Replies: 8 Views: 870 But turbo C..compiler shows the value oj j in ...
1. 20
2. 22
3. 22
4. 24
But i unable to understand why its showing these values... |
Forum: C++ Aug 20th, 2007 |
| Replies: 8 Views: 870 Hi . i m new in c++ programming..plz help me in sorting out this problem.....
HOW THE VALUE OF "j" VARIES IN FOLLOWING PROBLEMS ? Plz Explain...
1. int i=10,j;
j= (i++) + (i++);
... |