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
No Answer is Posted For this Question
Be the First to Post Answer
How can you find the exact size of a data type in c?
What is a sequential access file?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
What is uint8 in c?
Explain what is the concatenation operator?
What is the difference between malloc() and calloc() function in c language?
Why doesn't C have nested functions?
5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
which is the best antivirus and how to update it
What does static mean in c?