|
||||||
| C Tutorials All C Tutorials and Code |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||||
|
In c, there are some keywords the usage of which is not very clearly defined (in textbooks). But they are an important part of the language. Here are some I could find ::
Volatile:: The keyword volatile is used to specify that the value of a variable can be changed explicitly by a program even in the same expression where no external or explicit change is made in the value of the variable by the program. This, explicit specification of volatility is important because c automatically assumes a variable on the right side of an expression to have a constant value, and refers to that value if future for the same statement. Thus d=a+b+c+a*a+d; will have same values of ‘a’ throughout by default. This is an implicit optimization of all modern compilers. This can also overcome problems of changing compilers, which differ in evaluation rules for expressions. This is very helpful for ports, which have values that can be changed by external conditions only. Static :: 1. Static local variables :: Code:
#include<stdio.h>
int ret()
{
static int aa;
return aa++;
}
main()
{
int a;
for(i=0;i<10;i++)
{
printf("%d ",ret());
}
getch();
}
Know further here :: Keywords less used | TECHARRAZ |
| Sponsored Links |
|
|
|
|||||
|
Excellent Read! +rep given.
__________________
CodeCall Blog | CodeCall Wiki | Shareware Site | Linux Forum | Write a Blog Don't hesitate to ask any questions that you have! Check out our ASCII Calculator! |
|
|||||
|
Your blog is really coming along, Chinmoy!
![]() |
|
|||||
|
Thanks Xav. My alexa rank is 2,383,611 for a 1 week average, and 11,771,264 for 3 months average, although my blog is up only around 10 days!
techarraz.com - Traffic Details from Alexa |
|
|||||
|
That's pretty good - I'm at 6,239,619, but then again I haven't SEOd or anything.
|
| Sponsored Links |
|
|
|
|||||
|
Serious? But my site is the most useless personal site in existence! That can't be right!
|
|
|||||
|
What did you build your website for? Just to learn and write about yourself for family members? My first website was similar. I had a single HTML page just talking about Linux and myself. I was using Slackware 3.x at the time and I don't believe PHP had been invented (at least I hadn't heard of it).
__________________
CodeCall Blog | CodeCall Wiki | Shareware Site | Linux Forum | Write a Blog Don't hesitate to ask any questions that you have! Check out our ASCII Calculator! |
|
|||||
|
My website's just somewhere to host files, stuff like that. No biggie.
|
| Sponsored Links |
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| SEO Querry | Chaky | Search Engine Optimization | 11 | 09-09-2008 01:07 AM |
| Ambitious web 2.0 project, keywords: artists, community, portfolio | Thizke | Request Services (Paid) | 8 | 06-05-2008 01:02 PM |
| 14 Ways to SEO Wordpress | xtraze | Search Engine Optimization | 4 | 04-23-2007 05:03 PM |
| please help me how to change keywords in c.. | bryan | C and C++ | 1 | 01-29-2007 11:25 AM |
| Keyword Optimization - How To Achieve It | ravs2k6 | Marketing | 11 | 07-27-2006 06:15 PM |
| Xav | ........ | 1335.07 |
| MeTh0Dz|Reb0rn | ........ | 1059.99 |
| morefood2001 | ........ | 898.18 |
| John | ........ | 887.37 |
| marwex89 | ........ | 875.28 |
| WingedPanther | ........ | 864.22 |
| Brandon W | ........ | 764.23 |
| chili5 | ........ | 312.39 |
| Steve.L | ........ | 257.91 |
| dcs | ........ | 231.11 |
Goal: 100,000 Posts
Complete: 83%