write a program to convert a expression in polish
notation (postfix) to inline (normal)
something like make 723+* (2+3) x 7 (not sure) just
check out its mainly printing expression in postfix form
to infix
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,
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??
List the different types of c tokens?
What is use of integral promotions in c?
Write a program to swap two numbers without using a temporary variable?
Here is a good puzzle: how do you write a program which produces its own source code as output?
Explain what is a pragma?
What are the rules for the identifier?
write a program to find lcm and hcf of two numbers??
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
What is difference between structure and union in c programming?