main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Post New Answer View All Answers
How are Structure passing and returning implemented by the complier?
Why c is called a middle level language?
What is the size of empty structure in c?
What are the different data types in C?
What is the difference between formatted&unformatted i/o functions?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
define string ?
what is recursion in C
Is that possible to add pointers to each other?
Why ca not I do something like this?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
What is #include conio h?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What is the use of printf() and scanf() functions?
What is union and structure in c?