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
~3K People Reached
About Me

Hii guy'z and gal's thi$ i$... Shardendu,, hmm quite long?? well you can call me Shaan :)....the ever enjoying guy \o/... I m cool...l0ve t0 L|ve L|fe t0 its fUll eXtenT I m fUn l0ving pers0n...i kn0w h0w t0 alwAys b haPPy :) I m young...cool...and single…

PC Specs
OS : Windows 7, But My fav is Apple. I am just trying to get more and more knowledge in the feild of…
Favorite Tags
Member Avatar for Vandithar

Hi, I want to install turbo c in windows. I don't have cd to install turbo c. I tried downloading a zip package and installing but it is giving error. How can i install and download turbo c in windows? Any suggestions? VANDITHA

Member Avatar for maha harshini
0
389
Member Avatar for RichardLim

I am a newbie in programming and I'm using visual studio. i typed in this #include <stdio.h> #include <conio.h> #define PI 3.1416 void main(void) { float radius, circumference, area; radius = 2.5; circumference = 2 * PI * radius; area = PI * radius * radius; printf("radius of a circle …

Member Avatar for BobS0327
-1
91
Member Avatar for hwoarang69

how to copy pointer to pointer. char *name1; //store the value of DAVE char *name2; if name2 was a array i would have done. strcpy(name2,name1); but i dont know how to copy pointer into pointer. i was thinking some thing like this. name2 = name1? also do i need to …

Member Avatar for Shardendu
0
162
Member Avatar for Shardendu

I was told to make a stopwatch program..but i am unable to figure out how to take come out of loop and pause it and again go back into the loop if resumed ( i tried the pause button on the keyboard and it works) but i have to take …

Member Avatar for NoctiS17
0
299
Member Avatar for srinath1

inr main () { int x=3,y=4,z=4; printf("%d",z>=y>=x), } the answer is zero ..how??

Member Avatar for sharathg.satya
0
177
Member Avatar for Shardendu

Plz help me out with this : This is saved as myfuncs.c [CODE]int factorial(int num) { int i, f = 1; for(i = 1; i <= num; i++) f = f*i; return(f); } int prime(int num) { int i; for(i = 2; i < num; i++) { if(num%i == 0) …

Member Avatar for Shardendu
0
146
Member Avatar for wondergirl05

When I try turn on my computer, it starts as usual until it gets to the enter password screen.. where it only stays there for a few seconds.. then a blue screen flashes with a lot written on it, but not long enough to read anything it says.. and the …

Member Avatar for Ritesh_4
0
400
Member Avatar for ahp@aol.in

Hi folks, I've simple question regarding following code. [CODE] int main() { int i =5; printf("%d %d %d\n",i,i++,++i); // 7, 6, 7 return 0; } [/CODE] The answer is [B]7 6 7[/B]. I want to know how it is coming. Please help. Thanks, Amar

Member Avatar for jumbowat
0
787
Member Avatar for kotsarikos

Dear all, how can i make a program that count the different words in a text(input stop with EOF) and the number of the lines which a word appears?

Member Avatar for DeanMSands3
0
100
Member Avatar for shibu2all

Can anyone pls explain the output for this [CODE=c] int main() { int i=10; printf("%d %d %d",i++,--i,i); return 0; [/CODE] according to me the o/p should be 9 9 10 however gcc compiler is giving o/p is 9 10 10 can anyone explain me this....

Member Avatar for Shardendu
0
134
Member Avatar for shubham.joy

Hi all Please suggest an algorithm to find square root of a big number ( 100+ digits ) in C/C++.. Thank you

Member Avatar for Shardendu
0
148