I know this is not a programming question, but I couldn't think of where else to ask. Does google or anybody else have a feature to let you see the list of sites pointing to a given link?
http://stackoverflow.com/questions/3028161/project-help-needed-some-basic-concepts-great-confusion-because-of-lack-of-prope
where can i ask questions where my post will not be deleted because of "it difficult to say what is being asked" i mean general waste area covering questions like the one i asked in.... and please gve links to help forums where there are experts like you before closing this question thank you
This is my first question on Stack Overflow, I would like to know about any c programming books that have real programs to introduce real problems as opposed to standard books with examples aimed to teach the language it should be sort of like a challenge with solutions so that concepts like recursion can be used i know that i should find solutions to existing problems to learn the language but this is my first attempt and i find it hard to understand some simple problems so i was hoping for a book with solutions.
First up, I should let you know that I am learning C, so my apologies if this question seems stupid to a more advanced developer.
I know you can print with printf() and puts(). I can also see that printf() allows you to embed variables inside and do some stuff like formatting.
Is puts() merely a primitive version of printf(). Should it be used for every possible printf() without string interpolation?
Thanks
Suppose a query "select * from employee" returns 80 rows. I need to display middle rows that is from 20th row to 50th row.
I know, like to display first 20 rows we have option like "select top 20 * from employee" but if we need middle rows how to get it in MS SQL specifically.
I m new to this SQL queries...Can anybody answer to this question.
Simple question, don't have a printer around, My client is asking if the hiddent elements of the web page(items that show up on click) will be printed out on the paper or will it be hidden?
Hi,
I have a simple question. Is it okay to use array without single or double quotion like $array[key]? I thought it is bad because PHP look for constant first if I don't use single or doulbe quotion. One of my colleagues told me that it does not matter.
WHat do you guys think?
To make my question clear, I listed some scenarios:
1.once and i login from my login page and move to home page,i copy home page url and open a new browser and paste the copied url,it directs me to the home page again.How to prevent this in ASP.Net
Really simple question - how do I do a search to find all records where the name starts with a certain string in ActiveRecord. I've seen all sorts of bits all over the internet where verbatim LIKE SQL clauses are used - but from what I've heard that isn't the 'correct' way of doing it.
Is there a 'proper' Rails way?
Possible Duplicate:
Delete duplicate records from a SQL table without a primary key
I have a table with the columns
person_ID
firstname
lastname
and I somehow ended up with a bunch of duplicates.
Is there any way to look at all columns where firstname and lastname are the same and delete all except one of them (it doesn't matter which one is left as they are all the same.)
EDIT: I just found a duplicate question and perfect answer:
http://stackoverflow.com/questions/985384/delete-duplicate-records-from-a-sql-table-without-a-primary-key
I read the manual page of the "mount" command, at it reads as below:
All files accessible in a Unix
system are arranged in one big tree,
the file hierarchy, rooted at /.
These files can be spread out over
several
devices. The mount command serves to attach the file system found
on some device to the big file tree.
My question is:
Where is this "big tree" located?
So we're required to use the following order for CSS anchor pseudo-classes
a:link { color: red }
a:visited { color: blue }
a:hover { color: yellow }
a:active { color: lime }
But my question is why bother with the a:link part? Rather, is there any advantage to the above (other than perhaps clarity) over:
a { color:red; } /* notice no :link part */
a:visited { color: blue; }
etc.,etc.
I'd like the user to specify a RSS feed address and serialize the information from it. I am not interested in the XML format, but populate a strongly typed object from the XML. My question is, is there a standard that all RSS feeds support (Do all of them have date, title etc)? If so, is there a XSD that describes this. If not, how do I handle serializing a RSS feed to an object in ASP.NET?
I know that there are many API's like json,Facebook,twitter etc for developing related applications on iphone....but how to understand an API?This might be scilly question but I want to know how? what would you suggest for for a beginner?
I know how to do it mathematically, but i want it now to do it in c++ using some easy algorithm. Is is possible?
The question is that i need some methods/ideas for writing a number N in base M, for example 1410 in base 3: (14)10 = 2*(3^0) + 1*(3^1) + 1*(3^2) = (112)3 etc.
I have a short question that I have been thinking about for some time now so why shouldn't I ask it here on SO:
Is it theoretically possible to create a compiled, yet more agile, flexible and rapid-development-friendly language?
If so:
Where would be the pros and cons?
Why isn't there one yet?
I never remember how to do this properly - can you help me fix this query?
SELECT * from log where now() - EventTime < '1 day'
Note - this question seems identical but there's no solution there for mysql.
i know this connects to my original question but i put it here so it is seen by people afresh.
after passing each line of the code into a string,
how can i count the following things:
--the number of standalone functions and member functions per class
--the number of lines per function?
dear friends,
i have completed my First android application and i have deployed that application to different android based mobile phones
which is working fine.
my question to you is, is there iphone store like thing exists in android to upload your application by paying fee to android store or something like that..
or nothing or should i start passing my application to end users directly?
any help would be appriciated.
I've got a HashMap and I need to fetch an item by its integer value. I notice there's a containsValue() function, but it would appear I still have to iterate through the map to find the correct index anyway.
My question is; why use containsValue() if I'm required to traverse it afterwards?
Also, am I missing the point completely? ;-)
This may be a completely dumb question, but I've seen a couple examples declaring the variables AFTER putting them in bind_param:
http://devzone.zend.com/article/686
I've never seen this done before and all my programming knowledge says I should define them before hand. Is this a valid/preferred way?
may be this is a sizzle question but please help
void Temp1::caller()
{
char *cc=Called();
printf("sdfasfasfas");
printf("%s",cc);
}
char *Temp1::Called()
{
char a[6]="Hello";
return &a;
}
Here how to print Hello using printf("%s",cc);
I have a simple Zend Framework that has a view script to add records to the database. This is a silly question IMHO, but how can I use the add view script to edit the record as well??
I have played around with a few scenarios to no avail.
Thanks,
Steve