Convert the following expression to postfix and prefix
(A+B) * (D-C)
Answers were Sorted based on User's Feedback
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
What language is c written?
how to determine the complexity of an algorithm as log(n)
Write a program of prime number using recursion.
Simplify the program segment if X = B then C ← true else C ← false
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
what are the general concepts of c and c++
Difference Between embedded software and soft ware?
what is the function of .h in #include<stdio.h> in c ?
23 Answers HCL, IBM, Wipro,
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }