No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
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…
11 Posted Topics
Re: 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 | |
Re: # 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 … | |
Re: By using assignment operator, name2 will now point to the same address of name1. So, No use of malloc. | |
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 … | |
Re: 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 … | |
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) … | |
Re: 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. | |
Re: 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 … | |
Re: [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 = … | |
Re: 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 … | |
Re: 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 … |
The End.