Monday, November 4, 2019

Write a program to print different data types in "C"  and their ranges.
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("size of int = %d",sizeof(int));
printf("\nsize of float=%d",sizeof(float));
printf("\nsize of char=%d",sizeof(char));
getch();
}

No comments:

Post a Comment

2004 1.       A.   True or false:- 1.       The part of the computer that executes program instruction known as memory.- False 2.  ...