Tagged Questions
0
votes
4answers
55 views
What is the Signal function (SIGINT)?
what does this statement below do?? if anyone can explain this function i would really appreciate it.
signal(SIGINT, SIG_DFL);
1
vote
3answers
75 views
Bit-fields confusion?
I am working with bit-fields in C and do not understand what is going on with them. I created this code but I do not understand why different things are coming up as usual.
struct tB
{
unsigned ...
1
vote
3answers
70 views
what is wrong with the logic of my program? [closed]
What's wrong with the logic of my program.
For some reason, when I alternate turns among the player, the moment it hits 2nd turn, it would skip it, and the game seems to be dragged by one less step.
...
1
vote
2answers
97 views
Logic of #define (microchip xc8 compiler)
i just started learning C for pic programming and i was looking at other people's code and at the includes files provided with the compiler, especially the fundamental ones (xc.h, pic.h, pic specific ...
0
votes
3answers
208 views
Test for Palindrome using a recursive function in C
I tried to write the program for testing a string if it's a palindrome or not, but I always get the output as it's not one. What's wrong with my code?
#include <stdio.h>
#include ...
0
votes
1answer
69 views
Simple String Recursion
I'm trying my hand out with strings, and I've run into a problem I can't debug.
The goal of this script is to run 5 tests on one string, detecting the string length of each string, while giving the ...
0
votes
3answers
63 views
Nested for loop logic
I am trying to accomplish the following using nested for loops (C language):
a[0] = b[0][0];
a[1] = b[1][0];
a[2] = b[1][1];
a[3] = b[2][0];
a[4] = b[2][1];
a[5] = b[2][2];
...
2
votes
7answers
117 views
Combining two strings in C
I've just started learning about arrays and strings and I wanted to join the inputs of two strings, stringA and stringB and put their values in another string, stringC, after finding their lengths.
I ...
-2
votes
1answer
83 views
Can this set of conditionals be simplified further?
I started off with this set of conditionals:
if (old.tg.all && old.hg.all) {
// reject
}
if (new.tg.all && new.hg.all) {
// reject
}
if (old.hg.all && new.tg.all) {
...
0
votes
2answers
78 views
Writing a function to check if a relational statement is true or false [closed]
Here is the function (I hope the logic is fairly obvious).
Let x be one of the '<' or '>' operators
and a and b are the terms.
int rationalCheck(x, a, b){
if ( x == '<' && a < ...
0
votes
4answers
208 views
A Scientific Calculator in C using functions
I wrote a program which used most of the math.h library functions for creating a sort of scientific calculator. However, I am not getting the desired output. I always get 0.000000 in the end of the ...
2
votes
1answer
121 views
(Solved) Determining Day of the week using Zeller's Congruence in C
I tried writing the code for finding the day of the week for a given date using Zeller's Congruence but I'm not getting the correct output. What's wrong with my code?
#include <stdio.h>
...
3
votes
3answers
144 views
Can 1 return invoke 2 returns?
This is mostly theoretical question as there's not much use in it.
consider this situation :
function a() {
return;
}
function b(){
a();
}
Can you invoke a return in a parent function from a ...
0
votes
4answers
190 views
A C program to check if the entered date is valid or not
I was asked to right a program which checks if the date entered by the user is legitimate or not in C. I tried writing it but I guess the logic isn't right.
//Legitimate date
#include ...
-3
votes
1answer
59 views
Complex Logic Trouble in C [closed]
I am having trouble thinking this following block of code out and making sure that it works.
I have three possible input words, call them A, B, and C.
//The following if-else block sets the ...
0
votes
4answers
1k views
How to find the sum of Prime Numbers in C within a given range?
I'm very new to programming and I was asked to find the sum of prime numbers in a given range, using a while loop. If The input is 5, the answer should be 28 (2+3+5+7+11). I tried writing the code but ...
1
vote
5answers
100 views
Why does this logical/bitwise operation return 1?
I don't understand why the following returns 1:
0x0102 && (0xff << 8)
From my understanding, bit-shifting 0xff by eight to the left results in 0x00; and anding that with anything ...
0
votes
3answers
373 views
How to simulate a 4-bit binary adder in C
My professor assigned the class to write a C program to simulate a 32-bit adder using basic adders. I know a 32-bit adder is made up of 8 X 4-bit adders. However, I am unsure even how to simulate a ...
0
votes
3answers
164 views
Given an integer X, return 1 if all even-numbered bits in word set to 1 [closed]
I'm trying to do this with bit logic in C and getting stuck. I did some Googling and found information on similar problems, and I feel like I'm almost there, but not quite. The operations permitted to ...
-1
votes
1answer
43 views
Replacing text after a specific pattern in C
I have a char buffer which will be of the following format.
Somecontent
.
.
Content-Length: 1570
MoreContent
.
.
EndofContent
I want to replace The more content part with something else ...
2
votes
1answer
70 views
Finding first and last pattern in buffer
I have a character buffer which will contain text in this format.
somecontent...boundary="abc_is_the_boundary"
content-length=1234
--abc_is_the_boundary
somecontent
--abc_is_the_boundary
This ...
0
votes
4answers
105 views
Logic operators on Structures in C
Suppose I have two different structures, Struct1 and Struct2. They both have different elements in them.
What happens if I compare them like this:
if((Struct1) && (Struct2))
{
...
-1
votes
1answer
60 views
How to loop through an array(of prompts) and answer each prompt one at a time before continuing loop?
Hello I'm obviously new to C but I'm looking for some help or advice on the logic behind what I want to do.
That being, I'm going to make an array of questions and I'd like to loop through it and ...
1
vote
3answers
101 views
Is -!(condition) a correct way to obtain a full-bitvector from a boolean (mask-boolean)?
In removing conditional branches from high-performance code, converting a true boolean to unsigned long i = -1 to set all bits can be useful.
I came up with a way to obtain this integer-mask-boolean ...
0
votes
2answers
88 views
best allocation of memory
I have 200 groups. Each group has 100 devices, i.e. a total of 20000 devices divided into 200 groups of 100 each.
Now when each device gets registered with the server, the server assigns a group id ...
12
votes
9answers
439 views
Digit-increasing number test
A number is called digit-increasing if it is equal n + nn + nnn + ... for some digit n between 1 and 9. For example 24 is digit-increasing because it equals 2 + 22 (here n = 2).
Actually, a friend of ...
0
votes
1answer
172 views
How can I test for Connect Four victory condition?
trying to create a connect 4 game. Everything works fine except the victory conditions. Here is the code, appreciate every help. (sorry identifiers are german but i hope you get along with the code). ...
0
votes
1answer
47 views
Ruby/C logic to identify whether excel like cell position are overlapping or not
I am writing a ruby code using it in Rails app, where I have to accept excel cell like structure from the user and also I have to validate those cell structure.
For example:
User shall be able to ...
-1
votes
2answers
181 views
How are logic gates written at their most basic level? [closed]
In C, like many other languages, there is the if statement. You can use that logic when writing other languages, like C++ or Ruby. However, how does the lowest-level if statement work?
How do ...
1
vote
2answers
174 views
Bitwise Operation confusion
Firstly, let me just state for the record that this is in prep for a midterm I have Wednesday.
I'm taking a C Programming course and we've barely even touched Bitwise Operations, but we're being ...
0
votes
2answers
99 views
bit reset in a block of memory
I have a block of memory allocated 20bytes(160-bits) with memset value of 1. Each bit represents an incoming data, if the data is received the bit is set else reset. I have initially set all the ...
1
vote
3answers
149 views
Bitwise logic checking?
I'm messing around with bitwise operations and wanted to implement the simple logic puzzle where you have a fox(wolf), chicken(goose), grain(corn) and a person trying to cross a river. I'm using the ...
1
vote
2answers
3k views
Write code to convert given number into words (eg 1234 as input should output one thousand two hundred and thirty four)
Write C/C++/Java code to convert given number into words.
eg:-
Input:
1234
Output:
One thousand two hundred thirty-four.
Input:
10
Output:
Ten
Does it require a complete switch case for digits 0 ...
3
votes
1answer
380 views
Kalman Filter implementation - what could be wrong
I am sorry for being this tedious but I reviewed my code several times with the help of a dozen of articles but still my KF doesn't work. By "doesn't work" I mean that the estimates by KF are wrong. ...
0
votes
2answers
343 views
Problems to solve using control instructions in C for practice
Need some good problems which students can think of and apply their own logic to solve them using control instructions only. The topics covered until now are basic, not even arrays are done yet. But, ...
0
votes
2answers
438 views
Check if a number is 2^n [duplicate]
Possible Duplicate:
How to check if a number is a power of 2
This question has been asked in an interview.
How to check if a number is in 2^n format {1, 2, 4, 8, 16, 32, ....}
without ...
0
votes
0answers
62 views
Represent count function in logic
Given the following function which counts the number of AlphaChar characters in a string, how can i represent such a couting function in first order logic?
Note: AlphaChar is simply an unsigned int ...
2
votes
6answers
185 views
Solving Mathematical logics, placing digits in third number from digits of first and second number
I have two numbers.
First Number is 2875 &
Second Number is 852145
Now I need a program which create third number.
Third Number will be 2885725145
The logic is
First digit of third number ...
-1
votes
1answer
74 views
Get to number from an array and assign to one int
I'm working on my homework and trying to get two characters which are numbers from an array for example ABC10DEF
I want to get 10 and store it in an int type.
number_holder_1 = back[3] - ...
0
votes
3answers
101 views
How to get two number from a string and convert to int in one variable?
I'm trying to finish up my homework and this is the last thing I couldn't figure it out since this afternoon.
Say for example I have string in the array like this ABCD24EFG and I want to get that ...
0
votes
2answers
87 views
How does this work? x<<=3 = -8 where (byte)x = 127?
Why I am getting this output ?
Byte x ;
x = 127;
x<<=3;//same as x = x <<3
println(x)
output : -8
When i note down it in paper and twiddled the bits I was getting - 11111000 and that ...
3
votes
2answers
105 views
Are there any implementations of Subjective Logic based trust metrics out there? [closed]
Subjective Logic is fundamental as part of my next project, and I was just wondering if there are any implementations already out there. I've read some things (not a lot) about the operators but I'm ...
-3
votes
3answers
211 views
rounding number in C [closed]
I want to round number.
For example I have number 550 and I want to get result 500 from it.
How to do it in C language?
17
votes
3answers
865 views
What happens when you logical not a float?
I assume this just returns an int. Is there anything else going on I should be aware of? C/C++ differences?
float a = 2.5;
!a; // What does this return? Int? Float?
1
vote
2answers
229 views
simple logic for loop C++
I am trying to write simple program using ONLY for loop (if then statement is allowed i think) And I am having trouble getting the highest snow date "calculated" from a bunch of user inputs.
This ...
0
votes
3answers
1k views
bitParity - Finding odd number of bits in an integer
I have to create a function bitParity(int x) that takes an integer and returns 1 if there is an odd number of 0's in the bit form of x, and 0 otherwise.
Ex: bitParity(5) = 0, bitParity(7) = 1
...
-3
votes
12answers
249 views
array validation - without using an auxiliary array
This question is for real brainiacs, cause it should be done without an auxiliary array
and has to be most efficient!
C program - needs to recieve an array with X numbers
(suppose X=4 array : ...
10
votes
8answers
1k views
Swap Three Numbers In Single Statement
Is there any possiblty to swap three numbers in a single statement
Eg :
a = 10
b = 20
c = 30
I want values to be changed as per the following list
a = 20
b = 30
c = 10
Can these values be ...
0
votes
4answers
800 views
Generating non-repeating random numbers
I want to create a function in C. It will return a random integer in-range of N like:-
rand() % N;
but the thing is I want to keep track of uniqueness. I don't want the numbers to repeat. but i can ...
0
votes
1answer
58 views
Logic error in loop
Trying to add values to my struct Player but my output for them after operation is junk:
Output looks like:
Name: Warner
runs: 0
not out: 0
how out: |||||||| (symbols)
Player is a ...





