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
Describe how arrays can be passed to a user defined function
What is main () in c language?
Tell us the use of fflush() function in c language?
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
What are compound statements?
How do I access command-line arguments?
What do you mean by recursion in c?
To find whether a number is even or odd without using any conditional operator??
12 Answers College School Exams Tests, IBM,
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
What does #pragma once mean?
what are the advantages & disadvantages of unions?