Answer Posted / ranjita
hi sunil
can you give me the code for that or can you explain in detail
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
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.
What is structure pointer in c?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is a function in c?
Is there any possibility to create customized header file with c programming language?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
explain what is a newline escape sequence?
Create a simple code fragment that will swap the values of two variables num1 and num2.
What is a substring in c?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
Write a program to generate random numbers in c?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
What is the difference between array_name and &array_name?
write a c program to calculate sum of digits till it reduces to a single digit using recursion