Search:

Type: Posts; User: Horse22

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    1,173

    Input numbers using realloc

    Wrote a program to read as many positive integers as possible using realloc to store, and to output them after 0 is entered.



    #include<stdio.h>
    #include<stdlib.h>

    int main(void){

    int...
  2. Replies
    3
    Views
    1,992

    re: ugly mandelbrot

    ok i've uploaded a picture of the gross representation of the image (actual size). have used 64 shades of grey, the whiter the pixel the closer it is to the set (i.e it doesnt diverge that fast). as...
  3. Replies
    3
    Views
    1,992

    ugly mandelbrot set :(

    hi i am a novice to c++ and have been doodling with borland graphics interface with dev 4.9.9.1
    below is a programme i have written which calculates the mandelbrot set (all complex number c such...
  4. infinite looping when 2 large integers divide

    relatively new to c++ and to the forum. wrote a program that divides two integers:


    int main()
    {
    unsigned long a, b, c;
    do
    {
    cout << "\n\nEnter a and b respectively.\n";
    cin >> a;...
Results 1 to 4 of 4