Why pointers are used?
No Answer is Posted For this Question
Be the First to Post Answer
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); }
Write a C Program to display the following menu: Menu 1. Display 2. Copy 3. Append 4. Exit Accept the choice (1-4) from the user, and perform the following tasks: Choice 1: Accept a file name from the user and display the file on screen Choice 2: Accept two file names, and copy first file to the second Choice 3: Accept two file names, and append second file to the first file Choice 4: Terminate the program
1 Answers Accenture, Concor, DMU, Satyam, Syntel, Tora,
Why do we use & in c?
Why is this loop always executing once?
Why c is called a mid level programming language?
the data type used for unlimited value in c and how to do this program
find the minimum of three values inputted by the user
Do you know the difference between exit() and _exit() function in c?
logic for x=y^n
What is the total generic pointer type?
What is the function of volatile in c language?
What does the format %10.2 mean when included in a printf statement?