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

11 Posted Topics

Member Avatar for Vandithar

Try to download Emulated Version of turbo C available here : [url]http://www.mediafire.com/?a9d2xq45v6w3ffq[/url] the password for the file is mohitsaxena maybe this emulated version of turbo c will not work...try searching for it. OR USE DosBox :P

Member Avatar for maha harshini
0
407
Member Avatar for RichardLim

# do the following changes : # > void main(void) to int main() > remove getch(), use header file "stdlib.h" and use system("pause") at place of getch() It will hold the screen for you. (same as getch();) > use return 0 for returning nothing(same as void) in the end of …

Member Avatar for BobS0327
-1
94
Member Avatar for hwoarang69

By using assignment operator, name2 will now point to the same address of name1. So, No use of malloc.

Member Avatar for Shardendu
0
177
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
305
Member Avatar for srinath1

Look : Solving the thing right to left - y>=x which means 4>=3 is true. So it's 1. And as it is 1, then preceding to the next set of instruction which is z>=1 (as 1 was the result of that expression), 4>=1 is not true. So you get a …

Member Avatar for sharathg.satya
0
179
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
152
Member Avatar for wondergirl05

Your Windows just crashed. Try using recovery drive by pressing F11...if recovery made from drive doesn't work out then try recovery by CD's. If this also doesn't works out then congrats...there's some problem in your system hardware.

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

It is not guaranteed that an increment or decrement is performed immediately after giving up the previous value and before any other part of the expression is evaluated. It is merely guaranteed that the update will be performed sometime before the expression is considered "finished". So, using of increments or …

Member Avatar for jumbowat
0
804
Member Avatar for kotsarikos

[CODE]#include <stdio.h> #include <conio.h> #define IN 1 /* inside a word */ #define OUT 0 /* outside a word */ /* count lines, words, and characters in input */ main() { int c, nl, nw, nc, state; state = OUT; nl = nw = nc = 0; while ((c = …

Member Avatar for DeanMSands3
0
104
Member Avatar for shibu2all

It is not guaranteed that an increment or decrement is performed immediately after giving up the previous value and before any other part of the expression is evaluated. It is merely guaranteed that the update will be performed sometime before the expression is considered "finished". So, using of increments or …

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

You should use Double type of Variable declaration as it is the largest one. You will need #include<math.h> to use the sqrt function. d=sqrt(a); you should note that double is the largest size we can use...it will not calculate upto 100 digits...you can calculate something around 15-20 digits... :D Hope …

Member Avatar for Shardendu
0
157

The End.