fork download
  1. #include <stdio.h>
  2.  
  3. struct Node {
  4. int data;
  5. struct Node*next;
  6. };
  7.  
  8. int main() {
  9. int sizeOfNode = sizeof(struct Node);
  10. int sizeofInt = sizeof(int);
  11.  
  12.  
Success #stdin #stdout 0.02s 26132KB
stdin
Standard input is empty
stdout
#include <stdio.h>

struct	Node {
	int	data;
	struct Node*next;
};

int main() {
	int sizeOfNode = sizeof(struct Node);
	int sizeofInt = sizeof(int);