main()
{
int x=5,y=10,z=0;
x=x++ + y++;
y=y++ + ++x;
z=x++ + ++y;
printf("%d%d%d\n",x,y,z);
}
Explain what is wrong in this statement?
c program to manipulate x=1+3+5+...+n using recursion
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
What is define c?
What is function what are the types of function?
Why do we write return 0 in c?
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
How do you define CONSTANT in C?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Write a code to generate divisors of an integer?
a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static Which of the Following Statements are true w.r.t Bit-Fields A)a,b&c B)Only a & b C)Only c D)All
3 Answers Accenture, Digg.com,
Hai why 'c' is the middle language