Skip to content

Instantly share code, notes, and snippets.

@mmikhan
Last active February 20, 2022 14:50
Show Gist options
  • Save mmikhan/1d28b8c62e2a6b124315 to your computer and use it in GitHub Desktop.
Save mmikhan/1d28b8c62e2a6b124315 to your computer and use it in GitHub Desktop.
Write a program that will print your mailing address in the following form:
//
// main.c
// midterm
//
// Created by Md Mazedul Islam Khan on 3/21/15.
// Copyright (c) 2015 Md Mazedul Islam Khan. All rights reserved.
//
#include <stdio.h>
int main(int argc, const char * argv[]) {
// insert code here...
printf("First line : Name\n");
printf("Second line : Diir No, Street\n");
printf("Third line : City, Pin code\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment