write a program to convert a expression in polish
notation (postfix) to inline (normal)
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference b/w Structure & Union?
Write an implementation of “float stringToFloat(char *str).” The code should be simple, and not require more than the basic operators (if, for, math operators, etc.). • Assumptions • Don’t worry about overflow or underflow • Stop at the 1st invalid character and return the number you have converted till then, if the 1st character is invalid return 0 • Don’t worry about exponential (e.g. 1e10), instead you should treat ‘e’ as an invalid character • Write it like real code, e.g. do error checking • Go though the string only once • Examples • “1.23” should return 1.23 • “1a” should return 1 • “a”should return 0
Is exit(status) truly equivalent to returning the same status from main?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
what is the difference between structure and union?
Are there constructors in c?
What is wrong with this statement? Myname = 'robin';
What is sizeof array?
Is c language still used?
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??
What are the 4 types of unions?