Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~3K People Reached
About Me

student

Member Avatar for Dani

Can someone please explain to me the difference between ++i and i++ when written as part of an expression (i.e. within loops and if statements) ? Thanks :)

Member Avatar for WaltP
0
644
Member Avatar for let us c

hi i want to display pascals triangle on computer screen.the pascals triangle goes like this. and what is logic. 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 and so on.

Member Avatar for sunyifei23
0
158
Member Avatar for Sukhbir

void main() { int i=1; printf("%d,%d,%d",i++,i++,i++); } output 3,2,1 CAN SOMEONRE EXPLAIN ME WHY?

Member Avatar for sanagopi
-1
231
Member Avatar for Kerry

[COLOR=Blue][SIZE=2][FONT=Times New Roman]Hello, my name is kerry and i just sign up .Well, my question is how do reverse a number input by user using recersive function.Thanks for the help. [/FONT] [/SIZE] [/COLOR]

Member Avatar for c0ld sn1ff3r
0
494
Member Avatar for Sukhbir

[code=c] void main() { fork(); fork(); printf("main"); } [/code] pls explain me what is the output. how it comes.

Member Avatar for replytoshshir
0
192
Member Avatar for smithag261

I want to know how to write a program to print all Armstrong numbers between 1 and 500.

Member Avatar for Dave Sinkula
1
194
Member Avatar for let us c

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 out??? :?: :?:

Member Avatar for Catweazle
0
90
Member Avatar for Sukhbir

1. int *f() { int *m=(int *)malloc(2); return m; } WHY THIS POINTER TO INT TREATED AS A GLOBAL VARIABLE. 2.can a pointer points to another pointer like that int *p,i=2; int *q; p=&i; q=p; IS IT RIGHT.

Member Avatar for let us c
1
147
Member Avatar for let us c

hi i want to get following output. 1 2 2 2 3 3 3 3 3 4 4 4 4 4 4 4 and so on in 1st row one 1 in 2nd three 2 in 3rd five 3 in 4rt seven 4 in 5th nine 5 (all odd outputs)

Member Avatar for let us c
0
94
Member Avatar for kalinga

I am having a problem regarding nesting loops.for example for(int x=1;x<10;x++){ for(int y=1;y<x;y++) i want to know what this statement means. I posted a question to the forum but the moderator has unfortunately taken it off. I need some help regarding the concepts of the program given below.just give me …

Member Avatar for alc6379
0
104
Member Avatar for dominator

hi my computer is shutting down for some reason whenver i play Americas Army. that is the only time it shuts down and i or none of my friends know whats wrong here. i tried to reinstall the game and that did not work either. ever since i got this …

Member Avatar for dominator
0
174
Member Avatar for let us c
Member Avatar for smithag261

I'm new to C programming. I could not understand how to write the following programs. 1. Any year is input through keyboard. Write aprogram to determine whether it is a leap year or not.

Member Avatar for let us c
0
153