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 the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
What is 'bus error'?
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
Disadvantages of C language.
What is a program flowchart and how does it help in writing a program?
difference between c and c++?
How do I copy files?
what is a c-language.what is do.
write a programme to convert temperature from farenheit to celcius?
Is that possible to add pointers to each other?
Explain the difference between structs and unions in c?