Thread: Dev C++ Dependency Dropped

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Registered User kw42chan's Avatar
    Join Date
    Jan 2013
    Location
    Hong Kong, China
    Posts
    18

    Dev C++ Dependency Dropped

    Dear all,

    When use Dev C++ for writing C and compile, there is so called dependency dropped.

    Do you know why there is the reason and how to solve, use other compiler??

    Code:
    #include <stdio.h>main()
    {
     int x;
     char cArray[5];
     char cName[] = "Olivia";
     printf("\nCharacter array not initialized:\n");
     for ( x = 0; x < 5; x++ )
     printf("Element %d's contents are %d\n", x, cArray[x]);
    
    
     printf("\nInitialized character array:\n");
     for ( x = 0; x < 6; x++ )
     printf("%c", cName[x]);
    } //end main
    Attached Images Attached Images Dev C++ Dependency Dropped-initiation-array_20130105-png 

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. First word dropped off of string.
    By Arborius in forum C++ Programming
    Replies: 8
    Last Post: 09-07-2008, 10:57 PM
  2. Circular main <- main.o dependency dropped.
    By Queatrix in forum C++ Programming
    Replies: 4
    Last Post: 10-21-2005, 02:32 PM
  3. Replies: 3
    Last Post: 08-31-2005, 12:41 PM
  4. packets dropped by kernel?
    By threahdead in forum C Programming
    Replies: 2
    Last Post: 01-26-2003, 07:44 AM
  5. Post count dropped!
    By mithrandir in forum A Brief History of Cprogramming.com
    Replies: 21
    Last Post: 10-04-2001, 05:28 PM