Tag: Input

21
May
2017

Typedef Enum Union Project

code: #include<stdio.h> typedef union { double weight; int size; char color[10]; } Description; typedef struct { int…

11
May
2017

String Secret Revealed in C

String Input Take Without any gets function just scanf is enough for taking any input withlout gets function #include<stdio.h>…