Forum: Geeks' Lounge Sep 14th, 2004 |
| Replies: 3 Views: 2,070 i specifically say that those were MESSAGES.many of my friends tried to read some expirenced people i this site but in vain.i posted this because they may read this and maybe check their... |
Forum: Geeks' Lounge Sep 13th, 2004 |
| Replies: 3 Views: 2,070 hi
i think some guys here do not matter to see their messages(as told at the beggining).does this happen to any one of you.if it did happen what did you do.does the management check these things... |
Forum: C Sep 9th, 2004 |
| Replies: 7 Views: 5,122 wat is yhe prototype for fork(); |
Forum: C Sep 7th, 2004 |
| Replies: 9 Views: 6,971 consider the statement :
printf("%d%d%d",i++,i++,i++);
(p) (q) (r)
let the right most i++ be r and....
first of all the processeing in the above printf statement starts... |
Forum: C++ Sep 7th, 2004 |
| Replies: 4 Views: 2,899 there can be pointer to pointer.
.............
int a=25;
int*b=&a;
int**c=&b;
............
here c is pointer to b and b is pointer to a.
value of acan be accesed in two ways.ie by both the... |
Forum: C++ Sep 7th, 2004 |
| Replies: 4 Views: 2,899 there can be pointer to pointer.
.............
int a=25;
int*b=&a;
int**c=&b;
............
here c is pointer to b. |
Forum: C++ Sep 7th, 2004 |
| Replies: 4 Views: 2,899 there can be pointer to pointer.
int a=25;
int*b=&a;
int**c=&b; |
Forum: C Aug 27th, 2004 |
| Replies: 2 Views: 1,963 I HAVE TRIED IT.IT IS QUIT SIMPLE BUT MANAGING ROWS AND COLOUMS AND NESTED LOOPS ARE MAKING FUSS.SO,PLAESE DO TRY GETTING IN SHAPE OF EQUILATERAL TRIANGLE.THANK U :D |
Forum: C Aug 26th, 2004 |
| Replies: 34 Views: 8,289 that is simple
++i means pre increment.
i++ means post increment.
consider the programme
..
main()
{
int a=7;
printf("%d\t%d\t%d\t%d\t",++a,a++,++a,a++);
printf("%d\n"a); |
Forum: C Aug 26th, 2004 |
| Replies: 2 Views: 1,963 hi
i want to get following output.
1
2 2 2
3 3 3 3 3
... |
Forum: C++ Aug 26th, 2004 |
| Replies: 2 Views: 8,479 hi
i want to display pascals triangle on computer screen.the pascals triangle
goes like this. and what is logic.
1
... |
Forum: C++ Aug 26th, 2004 |
| Replies: 6 Views: 2,866 that means for every value of x u will have x values of y.
the loop inside is execcted x times more than the outsideloop. |
Forum: Viruses, Spyware and other Nasties Aug 21st, 2004 |
| Replies: 5 Views: 3,337 can anyone explain how trojan works |
Forum: Windows NT / 2000 / XP Aug 21st, 2004 |
| Replies: 17 Views: 11,154 i think u have problem with system file.u again start installing ur xp in same folder and repair it.it will solve the problem. |
Forum: C Aug 19th, 2004 |
| Replies: 7 Views: 29,107 reverse(int n)
{
long sum=0;int rem;
while(n>0)
{rem=n%10;
sum=sum*10+rem;
... |
Forum: C++ Aug 19th, 2004 |
| Replies: 4 Views: 2,887 the condition must be:
if((y%4==0&&y%100!=0)!!(y%400=-0)) pf("leap year") ......it goes like this |
Forum: C Aug 19th, 2004 |
| Replies: 7 Views: 16,079 amstong numer means when u add the cubes of digits of number u should get the number.ex:407=4^3+0^3+7^3 |