//problem217C
#include<stdio.h>
int main(void)
{
    int a=1,b=2,c=3,d=4;
    printf("\n1234");
    printf("\n%d %o %x %c\n",a,b,c,d);
    printf("1");
    printf("2");
    printf("3");
    printf("4");
}

my output is:

[Session started at 2010-09-14 17:57:05 -0700.]

1234
1 2 3 
1234
The Debugger has exited with status 0.

This is wrong, i dont know why?
can some 1 help.

Sure...What exactly is wrong?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.