fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. typedef struct {
  5. int x;
  6. int y;
  7. } Ponto;
  8.  
  9. int main(){
  10. Ponto p1 = {10, 20};
  11. Ponto p2 = {10, 20};
  12.  
  13. if (p1.x == p2.x && p1.y == p2.y){
  14. printf("iguais");
  15. }
  16. else {
  17. printf("diferentes");
  18. }
  19.  
  20. if (memcmp(&p1, &p2, sizeof(Ponto)) == 0){
  21. printf("iguais");
  22. }
  23. else {
  24. printf("diferentes");
  25. }
  26.  
  27. return 0;
  28. }
  29.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
iguaisiguais