main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Post New Answer View All Answers
What would be an example of a structure analogous to structure c?
Why doesnt this code work?
What are derived data types in c?
What is the c value paradox and how is it explained?
Explain can static variables be declared in a header file?
what is use of malloc and calloc?
What is %d used for?
Ow can I insert or delete a line (or record) in the middle of a file?
What does the function toupper() do?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Is void a keyword in c?
Explain what are the advantages and disadvantages of a heap?
What is the sizeof () a pointer?
Write a Program to accept different goods with the number, price and date of purchase and display them
Explain what is the use of a semicolon (;) at the end of every program statement?