write a c program to find the size of double without using sizeof operator | CTechnotips

#include<stdio.h>
int main(){
  double *ptr = 0;
  ptr++;
  printf("Size of double data type:  %d",ptr);
  return 0;
}

0 comments:

Post a Comment