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
write the program for maximum of the following numbers? 122,198,290,71,143,325,98
write a function to find whether a string is palindrome or not and how many palindrome this string contain?
char p="data"; printf(p);
What is New modifiers?
Does c have enums?
What is a good way to implement complex numbers in c?
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
What are the different properties of variable number of arguments?
List some basic data types in c?
Is r written in c?
What does d mean?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these