Alx09

Untitled

Apr 9th, 2020
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5.  
  6. int main() {
  7. char stiva[100], oper1[4], oper2[4];
  8. int varf, i;
  9. stiva[0] = 0x45;
  10. printf("Operatorul1 = %s", &oper1);
  11. printf("Operatorul2 = %s", &oper2);
  12. printf("n = %d", &varf);
  13. for ( i = 1; i <= varf; i++)
  14. {
  15. printf("stiva[%d] = ", i);
  16. scanf("%c", &stiva[i]);
  17. }
  18. while (varf) {
  19.  
  20. }
  21. return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment