Search results

  1. nbaztec

    once again i struck with pointers

    printf ("\n%d %d %d %d\n ", j, **k, *(k[0]+1), *k[3]) ; And use %ld instead of %d.
  2. nbaztec

    Big O notation

    You are correct, for an algorithm to not have a Big-Oh() or Theta(), it should be monotonically increasing in size n, i.e. not have an upper bound.
  3. nbaztec

    [For Sale] Cooler Master Elite 310 Cabinet + LG ODD

    [SOLD] Cooler Master Elite 310 Cabinet + LG ODD SOLD!! Model number and details: Elite 310 Cabinet Perfect condition. No scratches. No grease. No nothing. Working USB headers and Jacks Original carton and everything within (screws) LG ODD IDE. Working condition. Date of...
  4. nbaztec

    Build Your Rig! (XBlade)

    If you have a item/price/spec list of any items to update just send me over. Nothing to do with the mag :P
  5. nbaztec

    Build Your Rig! (XBlade)

    No criteria, just some members would occasionally help me with maintaining the list of products (since I fail to keep myself updated with the current h/w).
  6. nbaztec

    Build Your Rig! (XBlade)

    Even that requires quite an effort with new h/w releasing every fortnight. Nothing much I can do as of now.
  7. nbaztec

    Build Your Rig! (XBlade)

    Yeah, sorry about that. Lost out on volunteers long time back. As it turns out, maintaining a list of latest prices is a daunting task.
  8. nbaztec

    explain the below program.....

    Ok, this is retarded. Anyone found giving that example as h/w should be shot in the loins. First the explanation part, and to understand that, you need to have a brief idea of what pointers are: char *p = "Hello" is stored as: |H|e|l|l|o| here p points to the first memory location...
  9. nbaztec

    language for Web development

    ^this. But please don't throw around words like "advanced" that loosely - it's misleading.
  10. nbaztec

    Apple accuses Polish online food store A.pl for trademark infringement

    *www.youtube.com/watch?feature=player_embedded&v=wFeC25BM9E0
  11. nbaztec

    language for Web development

    What the ..? This is like saying C# is more advanced than C. Or a hammer is better than a pair of pliers. L stands for Linux. Linux v/s Windows as a web server, you decide which is better. The only thing PHP lacks is a better organization of function space (which is a humble mess), other than...
  12. nbaztec

    Post HTML5, Javascript & CSS3 queries here

    $("select").append("<option>" + i + "</option>"); The reason being your selector is incorrect. $("select option") selects each option $("select option").before("<option>" + i + "</option>"); inserts the new option before each option. So your code grows in complexity from O(n) to O(2^n) and...
  13. nbaztec

    {Help needed} N0ob needs help developing a web browser

    On the contrary, you have a text reader, which sends HTTP requests and yields the content. It is not a browser, the same thing can be achieved using `curl google.com` on *nix. What you do need to figure out is the exact thing you are having trouble with, i.e. rendering and for that you'll need...
  14. nbaztec

    sequence in Javascript

    Well yes and no. Every language serves a specific purpose, in case of JavaScript, yes, it's primarily used for client side scripting to enrich HTML pages. But who's to know if someone might need some algorithm to say parse input/yield a layout that resembles that pattern. The programmer ought to...
  15. nbaztec

    Build Your Rig! (XBlade)

    No. Kindly avoid referring to the prices there.
  16. nbaztec

    Do UFOs/Aliens exist, is Time Travel possible and more...

    Apocalypse means end. The End. But contrary to popular belief, it signifies rebirth as well. The biblical texts and many other civilizations consider it as the snakes head biting it's tail - a symbol of infinite time, i.e. with end comes a new beginning. Many words are there: Apocalypse...
  17. nbaztec

    Project TDF Helper Tool

    Tried a similar thing about a year ago: Build Your Rig! (which can be accessed in my sig). It started by using Sorcerer's Google Spreadsheet uptill it's very own backend database. The project as it stands, is stagnant owing to the very fact that I couldn't get enough volunteers (and we all are...
  18. nbaztec

    please help to solve this c program based on MACROS

    You're defining the macros wrong. A common pitfall while defining macros is when the programmer fails to properly parenthesize the arguments: #define prod(x) (x)*(x) The repercussions of which are explained by Desmond.
  19. nbaztec

    sequence in Javascript

    You are heading in the right direction, albeit a few things: Your indentation is messy. You don't have to use separate loop counter. You are just few arithmetic short of fixing it. But the first step in generating /any/ sequence is to generalize it, so it can work for any `n` number of...
Top Bottom