Recent content by Nikhil Shah

  1. Nikhil Shah

    Java function

    In Java, how can I "return" the swapped value of two integers from a function? class Solution{ static List<Integer> get(int a,int b) { a=a+b; b=a-b; a=a+b; //**What will be the return statement?** } } Is it necessary to return an object of some kind, containing...
  2. Nikhil Shah

    Adding many Python files and directories to a single dmg file

    How can I make a single dmg file out of many Python files in different folders? I know that's doable for a single file, but how can I do it for several? I can make a dmg for a 1.py file but not for numerous files in several directories.
  3. Nikhil Shah

    Binary to Decimal in C

    Code for switching paired over completely to decimal involving stack in C. I have utilized the stack to store the aggregate after convertion and jumped out just the top component from a stack that contains the aggregate. If it's not too much trouble, recommend any improvement. Also, Prior to...
  4. Nikhil Shah

    c++ dot

    Hi, to address a point in java we incorporate a class java.awt.Point, I might want to do likewise in c++ for example address a point in c++ I don't have the foggiest idea how to make it happen, is there a library to incorporate or how is it? much thanks to you
  5. Nikhil Shah

    Any suggetion for c Programming course Tutorial?

    You Can Check out Scaler Academy, They are having a different course and in my opinion, it is the Best Platform to learn to program.
  6. Nikhil Shah

    what is the difference between C and C++?

    C++ is an advanced, undeniable level, object-situated programming language that is in the C group of dialects and that developed from C. The C language isn't object-arranged and needs a large number of the highlights of the C++ programming language be that as it may, simultaneously, is likewise...
  7. Nikhil Shah

    Should I use Python or C++ when making an algorithmic trading bot?

    Please suggest
Back
Top