Recent content by gkara

  1. G

    Best Cabinet for my configuration...

    HI, I am right now having Intel i5 2.67 GHz processor, 4 gb DDR3 ram, 1 TB harddisk, and MSI P55-GD65 mother board with just 256 mb graphic card. I am right now using Frontech Spice Cabinet which costed around Rs.1200/-. Does this fit good or do you say, I need to and I shall have to buy a...
  2. G

    Threads in C ???

    Hi, If I want to achieve some simultaneous activity through C programming....... say I just want to display the clock in seconds at the bottom of the page while some activity is going on on the page....... how do I achieve it by C ? After all, even Jave in its initial days was developed by C...
  3. G

    Post your C/C++ Programs Here

    Re: Post ur C/C++ Programs Here It means you are asking the end user the values which (s)he wants to have for the variables a, b and c. Once the user enters the values, you are immediately going to store them in the corresponding address of those variables. &a = address of a &b = address...
  4. G

    Post your C/C++ Programs Here

    Trigonometric functions using C Hi, A C program that would perfom the basic trigonometric function would have the below possible look: #include<stdio.h> int fact(int n) { if(n == 0) return 1; else return(n * fact(n-1)); } double power(float x, int y) { int i = 1; double...
Top Bottom