Created
March 20, 2015 19:32
-
-
Save mmikhan/750bb246a174a20a3041 to your computer and use it in GitHub Desktop.
Modify the above program to provide border lines to the address.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// 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("----------------------------------------------\n"); | |
printf("Third line : City, Pin code\n"); | |
return 0; | |
} |
There's definitely something wrong on your setup then as I can confirm the relevant code provided in the gist still works fine as expected. You can test it here.
what is border line thing ???
It's simply a new line
Why did I have put those argument inside the main parenthesis
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using turbo c..No errrors bt o/p is not displayed on the screen