Answers for "padding in structures"

C
3

padding

/* Individual Padding */
padding-top: 1px; // just top padding
padding-right: 2px; // just right padding
padding-bottom: 3px; // just bottom padding
padding-left: 4px; // just left padding

/* Shorthand padding */
padding: 25px 50px 75px 100px;
  /*top padding is 25px
  right padding is 50px
  bottom padding is 75px
  left padding is 100px*/
padding: 25px 50px 75px;
  /*top padding is 25px
  right and left paddings are 50px
  bottom padding is 75px*/
padding: 25px 50px;
  /*top and bottom paddings are 25px
  right and left paddings are 50px*/
padding: 25px;
	/*all four paddings are 25px*/
Posted by: Guest on May-25-2021
0

what is structure padding

#include<stdio.h>
Struct dummy {
Int num;
Double x;
Float f;
};
Struct dummy1 {
Double x;
Int num;
Float f;
};
Int main()
{
Printf(“size:%d %d
”, sizeof(struct dummy ), sizeof(struct dummy1));
System(“PAUSE”);
Return 0;
}
Posted by: Guest on May-28-2021

Code answers related to "C"

Browse Popular Code Answers by Language