Learn C ProgrammingLearn ProgrammingPrograms On Arithmetic OperatorsResources 006. Write a program to print area of a circle. A(circle)= 3.142 * R * R in C language #include<stdio.h> #include<conio.h> main() { float AREA,R; clrscr(); printf("Enter Radius: "); scanf("%f",&R); AREA=3.14*R*R; printf("Area of the…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On Arithmetic OperatorsResources 005. Write a program to accept values of two numbers and print their division in C language #include<stdio.h> #include<conio.h> main() { float a,b,c; clrscr(); printf("Enter number 1: "); scanf("%f",&a); printf("Enter number 2:…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On Arithmetic OperatorsResources 004. Write a program to accept values of two numbers and print their multiplication in C language #include<stdio.h> #include<conio.h> main() { int a,b,c; clrscr(); printf("Enter number 1: "); scanf("%d",&a); printf("Enter number 2:…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On Arithmetic OperatorsResources 003. Write a program to accept values of two numbers and print their subtraction #include<stdio.h> #include<conio.h> main() { int a,b,c; clrscr(); printf("Enter number 1: "); scanf("%d",&a); printf("Enter number 2:…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On Arithmetic Operators 002. Write a program to accept values of two numbers and print their addition #include<stdio.h> #include<conio.h> main() { int a,b,c; clrscr(); printf("Enter number 1: "); scanf("%d",&a); printf("Enter number 2:…Prashant ChaudhariSeptember 1, 2012
Learn C ProgrammingLearn ProgrammingPrograms On Basics 001. Write a program to print a string in C language #include<stdio.h> #include<conio.h> main() { clrscr(); printf("\nKodeGod.com"); getch(); }Prashant ChaudhariSeptember 1, 2012
Tips-Tricks-TweaksTroubleshoot [Fixed] Show Current music track not working on Google talk If your Media player song is not shown Google Talk try following two things, for…Prashant ChaudhariAugust 18, 2012
ProgrammingTroubleshootWordpress [Fixed] “Failed to send your message. Please try later or contact administrator by other way.” – Contact Form 7 This error horrifies all non-developer contact form 7 users. However you can still take it…Prashant ChaudhariMay 13, 2012
Resources 7 Important tools web developers can use for faster development and UI Designing Here is my list of tools that I keep handy while working on UI and…Prashant ChaudhariMay 9, 2012
Finance Budget 2012: New tax slabs and exemption limit raised Mr. Pranab Mukherjee has annouced new Tax Slabs for us so that we can enjoy more…Prashant ChaudhariMarch 16, 2012