Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
84 views

If, else-if, and else statements inside a “case” for a switch-case-break statement?

I know the syntax for writing a case break statement, but I'm wondering if this is allowed: CODE: case 'p': { printf("Give number: "); scanf("%d, &int_1); if int_1=5;{ ...
1
vote
3answers
1k views

boost::lambda::if_then for copy_if

I have been trying to emulate a copy_if by the following codes but my compiler (g++-4.0) just keeps complaining. What's technically wrong? Thanks for your help! template <class STL> // a std ...
0
votes
3answers
46 views

How to use if statement when condition is a successful load of data? MatLab

So In a loop, I want all statements to be executed only if the load if data in that loop is successful. Else I want the loop to continue to the next iteration. for l=1:.5:numfilesdata if ...
0
votes
3answers
70 views

How to do an IF THEN Statement in MySQL?

MysQL (table1): +----+--------+-------+--------+ | id | itemid | title | status | +----+--------+-------+--------+ | 1 | 2 | title | 0 | +----+--------+-------+--------+ | 2 | 2 | ...
0
votes
3answers
104 views

Can't get this overly complicated loop to work correctly

So I'm editing the index.php in my WP theme's folder, essentially what I want it to do is this: Show 4 Posts on first page of blog. Style the first (newest) post on the first page differently. Style ...
0
votes
2answers
65 views

To fix a bug in Less' command by noting no. of parameters

This question is based on this thread. The code function man() { man "$1" > /tmp/manual; less /tmp/manual } Problem: if I use even one option, the command does not know where is the ...