Размер целого или любых других типов данных в C зависит от базовой архитектуры?

#include<stdio.h>

int main()
{
  int c; 
  return 0;
} // on Intel architecture

#include <stdio.h>

int main()
{
  int c; 
  return 0;
}// on AMD architecture

/* Here I have a code on the two different machines and I want to know the 'Is the size of the data types dependent on the machine ' */

Ответы на вопрос(4)

Ваш ответ на вопрос