A programming language is an artificial language designed to express computations that can be performed by a machine, particularly a computer.

learn more… | top users | synonyms

11
votes
5answers
175 views

Is it possible to enumerate computer programs?

Suppose you have to write a program that will test all programs in search of one that completes a specific task. For example, consider this JavaScript function: function find_truth(){ ...
0
votes
2answers
42 views

SDK development in multiple programming languages [closed]

I am working to develop an SDK that will allow the users to use it and write code in C# or Java. To achieve this most optimally, do I have to write the SDK in both languages? That would be a lot of ...
1
vote
3answers
78 views

how to the output of 4 digit number to 2 digit

I want to write the last 2 digit of a year. For instance, if I started with an input value "2012" I would want to generate an output value of "12". Is they any option in fprintf in which it will take ...
1
vote
3answers
30 views

How is PHP so high on this benchmark if it's said not to be as scalable as other frameworks?

http://www.techempower.com/benchmarks/#section=data-r5 This benchmark shows PHP consistently on the top 5 of several measurements. This contradicts the consensus that it does not scale as well as ...
0
votes
0answers
52 views

Lines of code ever written [closed]

Considering how long programming languages have existed, how many lines of code would one suppose has ever been written since the beginning of the electronic computer, as we know it? Now, obviously ...
0
votes
1answer
8 views

Simple program to compute and track grades

I was wondering what the best language / environment to code a program that has a GUI which allows you to keep track of grades by first setting the percentages for each graded section of a class (ie. ...
0
votes
1answer
13 views

How to make simple sql modifications from shell?

I have never made any software for linux, but it would be better for me now. I would like to write a simple SQL modification software that I can run via terminal and don't need to run php, apache. ...
0
votes
1answer
27 views

Error when reading txt file

I saved a dataframe in notepad named as ANOVA : 143 141 150 146 148 152 149 137 143 0 134 136 132 127 0 129 127 132 129 130 when I used read.table() command in R console ,that is, > ...
1
vote
1answer
13 views

Regexp performancing in different languages

If in PHP, some regex pattern is better for performancing than second pattern, this means that this pattern will also better in JAVA's or in javascript's or in postgreSQL's regex? That is, in ...
5
votes
7answers
121 views

Is there a simpler way to derefence nullable references in Java?

Consider the following Code Snippet: if (foo != null && foo.bar != null && foo.bar.boo != null && foo.bar.boo.far != null) { doSomething (foo.bar.boo.far); } My ...
0
votes
0answers
26 views

There is nothing innately slow about GolfScript. (…) Analysis could be done to remove most if not all stack use. Explain?

From http://www.golfscript.com/golfscript/syntax.html , Ruby is slow to start with so GolfScript is even slower. There is nothing innately slow about GolfScript. Except for the string evaluate ...
0
votes
0answers
49 views

a interesting array initialize method in linux kernel

in linux kernel,it initializes araay like below static struct mem_type mem_types[] = { [MT_DEVICE] = { /* Strongly ordered / ARMv6 shared device */ .prot_pte ...
-5
votes
0answers
147 views

Give me reasons to learn another language [closed]

There are so many languages out there. And I, as many others, am interested in learning another one. However, I am having trouble seeing reasons to really delve into any more. I learned BASIC and ...
2
votes
2answers
57 views

Java: Not a statement

I suppose this is more a question about language theory than anything else. Why is the first statement in main legal, when the second is not? Don't they evaluate to be the same thing? public class ...
-3
votes
0answers
37 views

What is the most complex OOP language grammar feature set that a recursive descent parser can handle without kludges? [closed]

It has been commented that C++ can be done with a recursive descent parser, or with an LL parser, or even with some difficulty and LALR parser, but that these tasks require hacking and kludging. OK, ...
12
votes
4answers
430 views

Why can I define a function in another function?

see the code below, I define a function in another function, void test1(void) { void test2(void) { printf("test2\n"); } printf("test1\n"); } int main(void) { test1(); return 0; } this ...
2
votes
1answer
43 views

threading.Timer()

i have to write a program in network course that is something like selective repeat but a need a timer. after search in google i found that threading.Timer can help me, i wrote a simple program just ...
0
votes
1answer
18 views

What should I learn to create a web-based test? [closed]

I have been tasked to create a online test on a website. It is a personality test and the test is interactive and will ask different questions based on what they answers they pick (need if statements ...
-1
votes
0answers
22 views

Not sure what programming language to choose based on my specific scenario [closed]

For the past couple years-ish I've been programming in Microsoft Small Basic. It is a great language, but I'm beginning to want to do things that it can't do. (It has pretty limited libraries.) I've ...
-2
votes
2answers
32 views

Creating a custom class through #define macro

I'm trying to create a macro with #define that'll allow me to create new class on demand. Here's my code: #pragma once #include "PDDefFileReader.h" #define SET_LANG( lang ) *( new std::string( lang ...
-2
votes
0answers
24 views

There is a language with concurrency with implicit and dedicated constructs? [closed]

There is a language, or more than one, that are able to support multi-core and multi-threaded environments without giving headaches to the programmer and that are able to offer a simple syntax a ...
-8
votes
0answers
38 views

PHP, Rubi, Javascript - Which one do you recommend? [closed]

We are about to start building new web system and have some doubts regarding the prefered language. The programmers are experienced but there are different recommendations. So, I will love to hear the ...
4
votes
1answer
88 views

What's the logic behind this python global scoping magic?

I was messing around with the scoping in python and found something that I think is rather strange: g = 5 def foo(a): if a: global g g = 10 else: g = 20 ...
2
votes
1answer
31 views

Differentiating between string declaration vs char declaration [closed]

In some languages, single quotes are used to define characters and double quotes are used to define strings. In other languages, both single and double quotes are used to define strings. Do languages ...
4
votes
2answers
159 views

What is the fastest way to create a cross-platform IDE for a new programming language?

The title already says most of what I'm after, but let me state some of the requirements explicitly: The language is not widely used, so writing a new language tokenizer etc is assumed to probably ...
1
vote
1answer
40 views

Finding 2's complement of negative no

We assume that 4bit 2's complement system is used to represent both positive and negative numbers Suppose we have to find 2's complement of no. 3 We can subtract this no. with 2^4 ...
0
votes
0answers
17 views

“Fake” console window - what language?

This isn't really a troubleshooting question, so if I'm violating any rules with the question I'm sorry. I have a small example of how I would like a site to look. You can find it here: ...
0
votes
4answers
50 views

Can you explain me what are “enqueue” and “dequeue”, please?

I don´t have a clear knowledge about these functions in programming for any language. Thanks
0
votes
0answers
18 views

Integrated Client and Server Programming Language [closed]

Does anyone know of programming languages that abstract away the client / server difference in AJAX programming i.e. a single program in the language compiles to JS for the client and some language ...
5
votes
9answers
197 views

Would you call it level or depth?

Which word would you pick to label the absolute stack level of an element—in other words its degree of nesting relative to the root/document element? Between level and depth which one would you ...
6
votes
3answers
221 views

Are languages really dependent on libraries?

I've always wondered how the dependencies are managed from a programming language to its libraries. Take for example C#. When I was beginning to learn about computing, I would assume (wrongly as it ...
-1
votes
1answer
56 views

Factors that influence the design of programming languages syntax and Semantics? [closed]

over the years primitive programming language developed from completely irreprehensible machine language into modern high level language , along this line of evolution there exist a lot of programming ...
1
vote
1answer
30 views

Is this grammar for matched brackets LL(1)?

The grammar is this: S -> e (epsilon) S -> TS T -> (S) I think it is indeed LL(1), my justification is that for a grammar to be LL(1), for each nonterminal that has more than 1 production rule, ...
0
votes
0answers
48 views

Which language instead of php for better speed with same web-access? [closed]

I have built an algorithm to predict the result of sports-matches. I built it in PHP, but for good results, it has to run over thousands of matches and extract parameters in order to be able to ...
0
votes
0answers
44 views

Suitable language to write web data collection scripts

I have written scripts in Ruby language (on ubuntu server) to fetch and index data from facebook data feed, twitter data feed, RSS feeds, etc. These scripts run for thousands of keywords and take a ...
-1
votes
1answer
16 views

how can I use colon instead of question mark in url query?

for example this image: https://pbs.twimg.com/media/BFmDUA5CcAAmcBl.jpg then I add a color symbol to send query string: https://pbs.twimg.com/media/BFmDUA5CcAAmcBl.jpg:large ...
1
vote
2answers
50 views

Forking vs Threading

I have used threading before in my applications and know its concepts well, but recently in my operating system lecture I came across fork(). Which is something similar to threading. I google ...
0
votes
1answer
64 views

How to add a trendline (exponential) in R?

Okay, so I am working with the daily closings of the Dow Jones Industrial Average (DJIA) index from January 1979 to December 1989. I have successfully plotted the time-evolution of the index, but I am ...
1
vote
1answer
36 views

GLPK Mathprog group of sets

I'm trying to code a model that can solve the Multiple Choice Knapsack Problem (MCKP) as described in Knapsack Problems involving dimensions, demands and multiple choice constraints: generalization ...
-4
votes
0answers
35 views

What language to learn for professional game programming? [closed]

I'm still in school at the moment but I am think ahead a bit and want to get a jump-start at University. I am hoping to do computer science or computer science w/ electronics. Anyway, I eventually ...
6
votes
4answers
88 views

How do different languages implement sorting in their standard libraries? [closed]

From what I have (briefly) read, Java and Python both look like they make use of timsort in their standard libaries, while the sorting method in C's stdlib is called qsort because it once was ...
1
vote
1answer
53 views

What language is being used here?

I am reading a chapter I found online on how to add AI to a game of tic tac toe. Somewhere in between they have some pseudo code fragments like these: to checkwin :candidate :mysquares :free ;; old ...
-5
votes
1answer
48 views

How to create a programming language with other [closed]

How to create a programming language with other I Want to Create a Programming language that can translate to java code and compile with javac ?? for example var x=2; if x== 2 then x=5; ...
0
votes
1answer
106 views

How does System.String save his string [closed]

I'am not a beginner in .Net, but far away from being a 'guru'. So to become better I find it helpful to discover the .Net-Framework in self and how Microsoft implements all the nice things. So last ...
-3
votes
3answers
76 views

Programming language that makes the smallest executables? [closed]

I am looking for a programming language that generates the smallest EXE files. It also needs to have no dependencies other than the DLLs that come with and are common to the following OS's: release ...
-1
votes
1answer
50 views

Program/Tool for more readable Java code?

I am currently looking for a program/tool that enhances the readability of a Java code. For example that it can convert the expression x=y +z+ 3; into x = y + z + 3; or the one of public class ...
2
votes
2answers
91 views

How do I handle an object moving in memory in the middle of a method?

I'm writing a VM in C++ for a programming language. The language is garbage collected, so I have instances of C++ classes that are allocated in the garbage collected heap. I'm using a copying ...
1
vote
3answers
90 views

Side effects in C

I thought that my understanding of side effects in programming languages was OK. I think this is a great definition from wikipedia: "in addition to returning a value, it also modifies some state ...
-1
votes
2answers
33 views

http://www.givenow.com.au/ Whats is this site written in? [closed]

I want to know what this site is written in? Does anyone know please? And yes I dont know much about creating websites so thats why I give it to someone else to do. Just wanted to know what the above ...
1
vote
1answer
94 views

How does Ada implement 'mod' and 'range' types? What are the performance implications?

In Ada you can define so called 'mod' and 'range' types: type Unsigned_n is mod 2**n; type Range_Type is range -5 .. 10; How are these implemented at the language machine level? What kind of ...

1 2 3 4 5 74