Saturday 24 February 2018

Write a program to print your name, date of birth, mobile number and location using "char variable" and "printf" function.

Source Code : 

#include <stdio.h> 
main() 
{

char    name[]    =   "Devendra Singh"; 
char dob[] = "18 July 1990"; 
char mobile[] = "+91-9999999999"; 
char location[] = "India"; 

printf("Name \t\t : \t %s \n", name); 
printf("DOB \t\t : \t %s \n", dob); 
printf("Mobile \t\t : \t %s \n", mobile); 
printf("Location \t : \t %s \n", location); 

getchar();

}

Output : 
Name : Devendra Singh 
DOB : 18 July 1990 
Mobile : +91-9999999999 
Location : India


Click Here to download sample file.


Labels: , ,

Friday 23 February 2018

Write a program to print your name, date of birth, mobile number and location using "printf" function.

Source Code :

#include    <stdio.h>
main()
{
    printf("Name   : Devendra Singh\n");
    printf("DOB    : July 18, 1990\n");
    printf("Mobile : +91-9999999999\n");
    printf("Location : India\n");

    getchar();
}


Output : 

Name   : Devendra Singh
DOB    : July 18, 1990
Mobile : +91-9999999999
Location : India


Click Here to download sample file.

Labels: , ,

C Programming Exercises

Beginners Level :

Labels:

Thursday 8 February 2018

Solved: Cannot create stationery in Outlook 2013 path %appdata%\microsoft\stationery to save not getting recognized. And giving error message as path not getting recognized.

Solution steps :

This issue happens due to outlook stationary view problem. To resolve this we would need to rebuild outlook stationary view.

1. Click File > Options to open the outlook options dialog box.

2. Now click on Mail in the left bar in dialog box, go to compose messages section and then click on the Stationery and Fonts button with holding the Ctrl + Shift key.

Now folder containing all personal Outlook stationary files would open.

Labels: ,