C Sorting ASP.Net Primer Tutorial

C Sorting ASP.Net Primer Tutorial

C Sorting ASP.Net Primer Tutorial

When, some time back, we talked about the “sisterly” (to today’s ASP.Net) PHP way of approaching the C Sorting “interface” to a web application with C Sorting PHP exec Tutorial as shown below, it was inferred that we might approach this, in ASP.Net (using Microsoft’s Visual Studio IDE under Windows), by using a “new Process()” technique … well, please scratch that idea … Windows security has come down pretty hard on such thoughts … so what we did today was compartmentalize more and allow the “C Sorting” be handled by Windows desktop techniques and has as the “interface method” the existance, or not, of files … a favourite technique for us, as much as anything because “methodologies” containing “file_exists” (or its like) are common in so many “server” programming languages … “server” not “client” … so not Javascript.

So we have …

  1. ASP.Net (C# codebehind) code you could call ShowIsPostBack.aspx (or call it something better?!) … and its helper Windows (DOS) Command Line …
  2. Windows (DOS) Command Line batch file you could call ask.bat (which is designed to keep running, and we show with today’s slideshow how you can use Windows Task Schedular to set it up to be run (the once) in the background, when you start your computer)

As with using PHP as the server language, the “unchanged” programming C code you could call use_qsort.c works in conjunction with ASP.Net server side language today. When we say “unchanged” we did decide to copy the use_qsort.exe somewhere into the computer’s PATH. Why? It means no matter where you are, directory wise, on the command line, the use of “unpathed” “use_qsort.exe” (or even just “use_qsort”) will start the program you want. This is a common requirement, so let’s go over the steps to achieve this below …

  1. Get to Windows (DOS) Command Line …
  2. Type echo %PATH% … take a note of one of the directories that suits and we’ll call that one “C:\MyDesiredDirectoryOnThePath” below (but you need to subsitute your “real” one in, for it, below) …
  3. Type in cd [path] commands to get yourself to where use_qsort.exe lives now (and after this) …
  4. Type in copy use_qsort.exe “C:\MyDesiredDirectoryOnThePath\*.*”

Of more than somewhat help today was ASP.NET 3.5 Unleashed by Stephen Walther … thanks.

So please compare and contrast the server giants and their software integration with some Windows operating system C.


Previous C Sorting PHP exec Tutorial is shown below.

C Sorting PHP exec Tutorial

C Sorting PHP exec Tutorial

There’s another chapter to our C “sorting” program in addition to the “piping” functionality we added with C Sorting Command Line Piping Tutorial as shown below, a couple of days ago. And it’s a pretty important chapter if you are interested in software integration, and “meeting points”. We talk about the “meeting point” of web and desktop applications through the use of mechanisms with the web application server language’s world … our web server language today is PHP and its exec method, but it could be ASP.Net and a new Process() scenario if that’s how you roll … but it has to be Windows web hosting … as we do with some local web serving utilizing the brilliant EasyPHP local web server … we can’t show you live on rjmprogramming.com.au domain because it is a Linux web server.

Please don’t think everything is possible with this arrangement, and a designer of web functionality would be wary, so just play within reasonable restrictions, and you should be fine … but don’t know about you … but personally find this software integration interesting and exciting.

So today we show some (proof of concept) server side PHP taking a file_get_contents() original data source and uses some C executable, placed into the same directory as the PHP, in conjuction with the use of the exec() method to rearrange the order of the items of the original data via that C executable’s sorting functionality.

The programming C code you could call use_qsort.c changing from a couple of days ago as per this link shores up a bit of the data sophistication accepted.

The programming PHP code you could call use_qsort.php supervises the Digital Mars C executable that is created using the C code above.

Who says desktop work is irrelevant to web applications? After all, the server side languages interface to what the desktop world looks like … a web server operating system. It is worth remembering that no matter how “cloudy” things get there are still web servers at the end of all these trails.


Previous relevant C Sorting Command Line Piping Tutorial is shown below.

C Sorting Command Line Piping Tutorial

C Sorting Command Line Piping Tutorial

Hope you’ve been noticing the improved usefulness, as a tool, our C “sorting” program is becoming as, today, we add some “piping” functionality, to add to yesterday’s command line switch improvements with our Windows C program that sorts arguments on the command line via the qsort method when we presented C Sorting Command Line Switch Tutorial as shown below. We feature this blog post at WordPress 4.1.1 website also with C Sorting Command Line Piping Tutorial.

Today, before we get into the “piping” talk we want to show you one more switch we invent …

  1. /p … to either prompt the user for input data or read it from a file via a command like …

    type input.file | use_qsort /r /p Throw These In 2 The Mix

Out of the “nice to haves” we left you with yesterday we’ve decided to implement …

  • explanatory advice if no arguments were entered (as is likely in all innocence) by the user
  • control over the input and output (I/O … input/output) mechanisms … important for piping thoughts … we may talk more on this

… but left out of the picture … “allow for switches anywhere, rather than assuming they’ll be entered first (but again, the switch logic has your rules)” … c’est la vie … but you could improve it for this idea if you like?!

In this program, now, you may see the use of …

  • “piping” functionality, helped out by the “gets” function (and an understanding that input file records will always be different (again, you could improve?!)) so that the input data could come from (a mix of) …
    1. the command line arguments (as of previous incarnations) … and introduced as of this incarnation are …
    2. interactive input from the keyboard (we refer to this as “prompting” but this is a bit of a misnomer of a term … we don’t prompt as we want the output stream just to contain “findings”, not prompt strings … though, as we did with the “help” output (where we used the perror function to effectively write to the “2>” error output stream, with that) maybe you could write a prompt to the error output stream (will, again, leave that to you, perhaps?! … but for myself, I like a “clean” output data “sense”)
    3. read input data from a file via ” < [input.file] ” (or “type [input.file] | use_qsort /p”)

    … and (though no different to yesterday) you could also send the output to a file via ” > [output.file] “

  • system(cmd); // make it a command line scenario … enabling the “piping” (input data) world and the “command line argument” (input data) world to meet … again, a weakness is the limits on the amount of data this will work with … you could consider a system of writing to temporary files instead?! … up to you

  • qsort((void *)argv, (size_t)argc, sizeof(char *), &(*(int (*)(void const *, void const *))funcArr[mymode])); // unchanged from yesterday

What results is a pretty flexible program that is now a “tool” in the sense that it can interface to other command line tools and add its little bit of a “sorting” usefulness to the “equation” of your solution. After all, software is a collaborative process, always made up of parts.

The programming C code you could call use_qsort.c changing from yesterday as per this link.


Previous relevant C Sorting Command Line Switch Tutorial is shown below.

C Sorting Command Line Switch Tutorial

C Sorting Command Line Switch Tutorial

Yesterday we started with a Windows C program that sorts arguments on the command line via the qsort method when we presented C Sorting Primer Tutorial as shown below.

Today we show you a very useful technique to open up some functionality thoughts regards a command line program when we include some “homemade” switches. Say “homemade” because you decide what switch means what bit of program configuration takes place, so today we allow for two “homemade” switches to our program …

Today we show you a very useful technique to open up some functionality thoughts regards a command line program when we include some “homemade” switches. Say “homemade” because you decide what switch means what bit of program configuration takes place, so today we allow for two “homemade” switches to our program …

  1. /r … to reverse the sort (NB. Windows often uses “/” while Unix and Linux more often use “-” … by convention … but it doesn’t have to be this way if you program differently … as we said, you make the rules with your switches)
  2. /n … to sort numerically (rather than alphabetically)

Nice to haves … not done (yet) … would include …

  • explanatory advice if no arguments were entered (as is likely in all innocence) by the user
  • allow for switches anywhere, rather than assuming they’ll be entered first (but again, the switch logic has your rules)
  • control over the input and output (I/O … input/output) mechanisms … important for piping thoughts … we may talk more on this

In this program, now, you may see the use of …

  • function pointers … pointers that point at functions within your program code … cute, huh? … we talked about these, also, with Function Pointers in C and C++ Primer Tutorial and we also like this link … thanks

  • qsort((void *)argv, (size_t)argc, sizeof(char *), &(*(int (*)(void const *, void const *))funcArr[mymode]));

The programming C code you could call use_qsort.c changing from yesterday as per this link.


Previous relevant C Sorting Primer Tutorial is shown below.

C Sorting Primer Tutorial

C Sorting Primer Tutorial

As we have mentioned before, as with C String Function Timings Primer Tutorial as shown below, you don’t have to use an IDE to do C programming. There is Digital Mars C as an example of that. We have talked about the Xcode command line tools before, that frees the gcc compiler to (also) be a command line tool to write C programs from the command line separate to any IDE usage, and we’d also like to add that Windows C programmers from the days of Microsoft C, who miss it (know I do … it was solid), can still write some of this code using Digital Mars C. Luckily, one of the most useful functions, as exemplified by the C code line below (and with the WordPress 4.1.1 version C Sorting Primer Tutorial) …


qsort((void *)argv, (size_t)argc, sizeof(char *), isbigger);

… qsort … is available in Digital Mars C, as it used to work in Microsoft C.

We show it in action today sorting, alphabetically, command line arguments (on the Windows (DOS) command line doh!). It has the scope, with its interface to tailoring your own sorting “algorithm” function abilities, to be able to handle any type of business logic you choose, that “sorting” jobs so often ask for.

So … get … sorted … with our C code you could call use_qsort.c based on an idea out of a Microsoft C manual and Digital Mars compilable via (the taxing chortle, chortle) …


dmc use_qsort

… yes … no make files required here, nor IDE menus … but brush up on your pointers, perhaps.

As a Windows programming afficianardo would tell you … desktop functionality opens you up to many scheduling and batch mode processing ideas often crucial to the best productivity tools in software. It is no wonder that the web’s curl is so popular so that a bit of these software strengths from the desktop days can be brought to bear on the web application world we increasingly encounter today.


Previous relevant C String Function Timings Primer Tutorial is shown below.

C String Function Timings Primer Tutorial

C String Function Timings Primer Tutorial

You don’t have to use an IDE to do C programming. There is Digital Mars C as an example of that. We have talked about the Xcode command line tools before, that frees the gcc compiler to (also) be a command line tool to write C programs from the command line separate to any IDE usage.

So it is today with this tutorial, where we work with Digital Mars C, to time some inhouse and C string library (string.h) library string manipulation functionality. If you get to compile (recommend Digital Mars C) and run this tutorial’s download at a Windows Command Line (prompt) you will see how fast C is, working way down there near the kernel level. So the second accuracy of time(NULL) won’t pass muster for the timings, and instead, here, we use the clock() functionality to get the refinement required to have it mean anything. Could be affected by so many other things anyway, like what else is running, but is instructive as to what you might have thought was the fastest method. Personally, love using strstr() to find strings within strings, but, as you can see from the numbers, there are better choices such as strchr() and strpbrk() … personally, I’m affronted, gobsmacked, insulted, resigned … impersonally, I’m anti-affronted, anti-gobsmacked, anti-insulted, anti-resigned … the nearby ants, antily-anti-affronted, antily-anti-gobsmacked, antily-anti-insulted, antily-anti-resigned.

So feel free to download the C programming source code here and rename it to timings.c

Hope you enjoy this tutorial showing you some command line C dmc (Digital Mars) compilation work.

A really helpful tutorial for code above to do with using clock() is shown here … thanks.

A really helpful tutorial for C string functionality via string.h is shown here … thanks.

If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.

This entry was posted in eLearning, Operating System, Tutorials, Visual Studio and tagged , , , , , , , , , , , , , , , , , , , , , , , . Bookmark the permalink.

19 Responses to C Sorting ASP.Net Primer Tutorial

  1. A domain name name, or Web address, is an deal with where it truly is simple to be observed online. ItÒ€ℒs how you will communicate yourself by means of email or your site and itÒ€ℒs which buyers assume of once attempting to discover you.

  2. Reap says:

    Terrific opinions you have got here.. Get pleasure from the posting you supplied.. Truly advantageous outlook, thank you for sharing.. My personal internet surfing seem full.. thank you.

  3. fortunate says:

    Value the admission you available.. My internet surfing seem full.. thanks. Fantastic opinions you have here.. Is not it awesome when you uncover a good submit?

  4. healing says:

    Supporting the thread.. glad I found it of course, study is paying off. Great views you have got here.. I value you conveying your viewpoint..

  5. I have been exploring for a little bit for any high quality articles or blog posts on this sort of house . Exploring in Yahoo I eventually stumbled upon this website. Studying this info So i am satisfied to convey that I’ve a very excellent uncanny feeling I found out just what I needed. I such a lot unquestionably will make certain to do not fail to remember this web site and provides it a look regularly.|

  6. shine says:

    Enjoying the article.. cheers My internet browsings seem complete.. thank you. Really beneficial mindset, thanks for sharing.. My web surfing seem full.. thank you.

  7. Famous says:

    Truly appreciate the blog you delivered.. I value you stating your viewpoint.. Certainly beneficial mindset, thank you for giving.. Adoring the posting.. bless you

  8. Heavenly says:

    of course, study is paying off. Good feelings you have got here.. Treasure the posting you given.. Treasure the admission you given..

  9. try this out says:

    Definitely valuable outlook, many thanks for sharing.. Value the entry you given.. So pleased to possess discovered this article.. Truly effective mindset, many thanks for expression..

  10. about his says:

    My personal web browsings seem complete.. thank you. So content to have identified this article.. yes, investigation is paying off. Great beliefs you have got here..

  11. effect says:

    I enjoy you showing your point of view.. Is not it awesome when you discover a great post? My internet surfing seem total.. thanks. Good beliefs you have here..

  12. Regards for helping out, fantastic info. “Considering how dangerous everything is, nothing is really very frightening.” by Gertrude Stein.

  13. cruises says:

    Great beat ! I would like to apprentice while you amend your site, how can i subscribe for a blog web site? The account helped me a acceptable deal. I had been a little bit acquainted of this your broadcast provided bright clear concept

  14. medicine says:

    you’re in reality a good webmaster. The website loading pace is incredible. It seems that you’re doing any unique trick. Furthermore, The contents are masterwork. you’ve performed a fantastic task in this matter!

  15. Hello. fantastic job. I did not anticipate this. This is a remarkable story. Thanks!

  16. lovely says:

    So content to have located this article.. Take pleasure in the entry you made available.. indeed, analysis is having to pay off. Enjoying the article.. with thanks

  17. casino says:

    Thanks for another fantastic post. Where else could anybody get that kind of info in such an ideal method of writing? I have a presentation next week, and I’m on the search for such information.|

  18. Leia Paris says:

    Undeniably believe that which you said. Your favorite justification appeared to be on the net the easiest thing to be aware of. I say to you, I definitely get irked while people think about worries that they just don’t know about. You managed to hit the nail upon the top and defined out the whole thing without having side-effects , people could take a signal. Will likely be back to get more. Thanks

  19. tecnilar.pt says:

    thank you very much

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>