C Programming |
You are subscribed to email updates from C Programming To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
C Programming |
You are subscribed to email updates from C Programming To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
C Programming |
Posted: 10 Dec 2013 06:28 AM PST Q. Write a C program to print the following number pattern rectangle as: 1 2 3 4 5 4 5 2 3 4 5 3 4 5 3 4 5 2 3 4 5 4 5 1 2 3 4 5 Ans. /*c program for number pattern rectangle design*/ #include<stdio.h> int main() { int n=4,num=5,p=4,r,c,z; for(r=1; r<=n; r++,p--) { for(c=r; c<=num; c++) printf(" %d",c); for(c=1,z=p; c<=r+1; c++,z++) printf(" %d",z); printf("\n"); } getch(); return 0; } /*********************************************************** The output of above program would be: ************************************************************/
|
You are subscribed to email updates from C Programming To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
IPL Twenty20 Cricket |
Only T20: Pakistan vs Afghanistan in UAE 2013 Posted: 07 Dec 2013 09:20 AM PST | ||||||||||||
West Indies tour of New Zealand 2013-14 Posted: 07 Dec 2013 09:05 AM PST
|
You are subscribed to email updates from IPL Twenty20 Cricket To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
9lessons:Htaccess File Tutorial and Tips. |
Htaccess File Tutorial and Tips. Posted: 19 Nov 2013 11:04 AM PST After posting Understanding of Regular Expression article most of my readers are expecting .htaccess basics, and I did not find any useful article on Google first page results. Specially I love to write .htaccess file, using this you can easily configure and redirect Apache Web Server file system. This post will explain you how to create friendly URLs, sub domain directory re-directions and many more. Read more » |
You are subscribed to email updates from 9lessons Programming Blog To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
9lessons:PHP Email Verification Script. |
PHP Email Verification Script. Posted: 12 Nov 2013 11:33 AM PST I received lots tutorial requests from my readers in that most of them asked to me, how to implement email verification system using PHP. This is very basic tutorial explained how to create database and proper activation code. Implemented with mysqli_() fuctions, because mysql_() functions are depreciated. Read more » |
You are subscribed to email updates from 9lessons Programming Blog To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
9lessons:Outlook.com on a Custom Domain |
Outlook.com on a Custom Domain Posted: 28 Oct 2013 11:43 AM PDT Are you looking for free better email services for your domain? I suggest Outlook.com is the best option to setup your custom domain email service. This provides 50 member accounts free with all Outlook features like communicator, file storage etc. take a look this post follow the steps and setup your free Outlook account for your domain. Read more » |
You are subscribed to email updates from 9lessons Programming Blog To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
9lessons:Understanding Regular Expression |
Understanding Regular Expression Posted: 21 Oct 2013 11:22 AM PDT Regular expression is the most important part in form validations and it is widely used for search, replace and web crawling systems. If you want to write a selector engine (used to find elements in a DOM), it should be possible with Regular Expressions. In this post we explained few tips that how to understand and write the Regular Expression in simple way. Read more » |
You are subscribed to email updates from 9lessons Programming Blog To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
9lessons:10 Reasons To Get A .BLOG Name Now |
10 Reasons To Get A .BLOG Name Now Posted: 18 Oct 2013 11:38 AM PDT Blogging has become more than just a way for people to express themselves over the internet; it has become a way for people to connect over shared interests. With the relative ease of setting up a personal blog, many people from all ages and backgrounds have started blogging. Choosing what domain extension to use for your blog is one of the most important steps to creating a successful blog. Read more » |
You are subscribed to email updates from 9lessons Programming Blog To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
IPL Twenty20 Cricket |
ICC World Twenty20 Qualifier 2013 Posted: 11 Oct 2013 05:16 AM PDT
| ||||||||||||||||||||||||||||||||
Pakistan vs South Africa in UAE 2013 Posted: 11 Oct 2013 04:30 AM PDT
|
You are subscribed to email updates from IPL Twenty20 Cricket To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
9lessons:Customizing Google Maps |
Posted: 07 Oct 2013 11:50 AM PDT Do you know Google is providing an awesome feature, that you can create a totally customizable personalized Google Maps for your website based on theme colors. Today I want to explain how to customize and style Google Map from the scratch, just very few lines of code, this helps you to enrich your website design. Read more » |
You are subscribed to email updates from 9lessons Programming Blog To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
C Programming |
Posted: 05 Oct 2013 01:07 AM PDT Q. Write a C program to print the following flag design as: * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Ans. /*c program for flag design*/ #include<stdio.h> int main() { int num=7,r,c; for(c=1; c<=9; c++) printf(" *"); printf("\n"); for(r=1; r<=num; r++) { if(r==4) { for(c=1; c<=2; c++) printf(" *"); } else { for(c=1; c<=4; c++) printf(" *"); } printf("\n"); } for(c=1; c<=9; c++) printf(" *"); getch(); return 0; } /************************************************************** The output of above program would be: ***************************************************************/
|
You are subscribed to email updates from C Programming To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
ComputerGeek |
php.ini configuration file Default values Posted: 02 Oct 2013 11:12 PM PDT php.ini configuration file Default values The PHP configuration file(php.ini) is read when PHP is initialized. php.ini includes the core php.ini directives you can set these directives to configure your PHP setup.php.ini will be located at /usr/local/lib/php.ini OR /etc/php5/apache2/php.ini or /etc/php.ini php.ini default values: display_errors ;Default Value: On This determines whether |
You are subscribed to email updates from ComputerGeek To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
C Programming |
Calculating Sum of Number of elements Posted: 25 Sep 2013 12:04 PM PDT Q. Write a C program to accept the number of elements to be insert from the user and calculate these elements sum. For example: if user enter no. of elements : 5 then he/she should enter elements value as: Enter 1 element/number : 2 Enter 1 element/number : 7 Enter 1 element/number : 1 Enter 1 element/number : 10 Enter 1 element/number : 50 Result will be : Sum of elements/numbers : 70 Ans. /*c program for entered number of elements and calculate the sum*/ #include<stdio.h> int main() { int num,arr[20],i,sum=0; //arr[20] value of changeable as big value printf("Enter number of element : "); scanf("%d", &num); for(i=1; i<=num; i++) { printf("Enter %d element : ",i); scanf("%d", &arr[i]); } for(i=1; i<=num; i++) sum = sum + arr[i]; printf("\nSum of all numbers : %d",sum); getch(); return 0; } /****************************************** The output of above program would be *******************************************/
|
You are subscribed to email updates from C Programming To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
Post a Comment