main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / chandrasekhar
56 93
| Is This Answer Correct ? | 8 Yes | 4 No |
Post New Answer View All Answers
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What is wild pointer in c with example?
code for replace tabs with equivalent number of blanks
List the different types of c tokens?
Explain built-in function?
Write a program in c to replace any vowel in a string with z?
What is wrong with this declaration?
Explain the properties of union.
Is null valid for pointers to functions?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
How do you search data in a data file using random access method?
What are global variables and explain how do you declare them?
What is spark map function?
Is Exception handling possible in c language?
What are keywords in c with examples?