main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}

Answer Posted / rohit

57 94

Is This Answer Correct ?    33 Yes 21 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is pivot in c?

570


How can I check whether a file exists? I want to warn the user if a requested input file is missing.

658


Write a program with dynamically allocation of variable.

607


What is the purpose of sprintf() function?

608


The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 …). Records the times. c). Do an analysis of the differences in times and submit it in class.

1637






What does 4d mean in c?

951


What is pointer to pointer in c with example?

554


What does the c preprocessor do?

625


Explain how can I manipulate strings of multibyte characters?

788


What is scope rule in c?

609


Explain the difference between getch() and getche() in c?

567


Write a C program in Fibonacci series.

640


write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.

14971


we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above

640


What is the difference between array and linked list in c?

605