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: ,

Wednesday 6 September 2017

Solved: Outlook Calendar - reminder keep prompting up

If the reminder keep prompting out even the meeting has completed, these is basically caused by corrupted outlook calendar.

To resolve this you need to perform below action.

1. Exit Outlook program.
2. Click on start button.
3. Type below command

Outlook.exe / cleanreminders

Press Enter

It should clear off all the corrupt reminders and you should not see reminder for completed ones.

Labels: , ,

Solved: Cannot open the Outlook windows. Invalid XML, the view cannot be loaded.

To resolve this issue. You need to run below command.

"Outlook.exe /resetnavpane"

Labels:

Friday 14 August 2015

Windows 8 : Configure Personal Mail on Windows 8 Device

By default when the Mail app is launched it prompts to sign into a Microsoft account. See the screenshot below...





We need to disable this prompt by enabling a GPO manually. The GPO will then allow to configure an Enterprise account. See the screenshot below...



To enable the Group Policy manually on the Windows 8 device go to
Computer Configuration -> Administrative Templates -> Windows Components -> App runtime -> Allow Microsoft accounts to be optional (Enable this policy)


Configuration Steps :

1. On the Start screen, tap or click Mail.




2. You will now be prompted to setup an Enterprise Account, click on Show more details




3. Populate these details and click on Connect.

• Email Address - your mail address
• Server Address – You mail address server
• Domain - to be left blank
• User Name - your mail address
• Password - Your mail address password





4. Click on Enforce these policies. Mails will now sync with the device.




5. To access Calendar, on the Start screen tap or click Mail




Labels: , , ,