Skip to content

Instantly share code, notes, and snippets.

View dbc2201's full-sized avatar
💻
I may be slow to respond.

Divyansh Bhardwaj (DBC) dbc2201

💻
I may be slow to respond.
  • Chandigarh, India
  • 12:22 (UTC +05:30)
View GitHub Profile
@dbc2201
dbc2201 / source4.c
Created November 20, 2018 17:45
GLA-BCSC0001-2018:Worksheet1:Question4
#include <stdio.h>
int main()
{
int a = 1;
if (a);
{
printf("hello");
}
else
{
#include <stdio.h>
int main()
{
int number = 48;
if ( number > 48 )
{
printf("The number you entered is %d.\n", number);
}
return 0;