Tagged Questions

11
votes
5answers
319 views

Chaining Bool values give opposite result to expected

Unthinkingly I wrote some code to check that all the values of a struct were set to 0. To accomplish this I used: bool IsValid() { return !(0 == year == month == day == hour == minute == second); ...
11
votes
4answers
1k views

Operator Precedence vs Order of Evaluation

These 2 are highly commonly used terms in programming and extremely important for a programmer to know. And as far as i understand these 2 concepts are tightly bound, one cannot do without the other ...
8
votes
5answers
72 views

Similar syntax but one shows error but another does not

Hiii all I made this program today int main() { int a = 1,2; /* Shows error */ int b = (1,2); /* No error */ } Why first one shows error while second one does not? Just ( ) makes one program ...
6
votes
3answers
582 views

Why does this C program print weird characters in output?

I've the following program: #include <stdio.h> int main() { int ch; while( ch = getchar() != '\n') { printf("Read %c\n",ch); } return 0; } ...
5
votes
1answer
82 views

Operator Precedence in C - Returning a Value

I have this statement: return *local_stack_var2++ + 42; Would these be the proper steps when breaking it down: 1. Dereference local_stack_var2 2. Add 42 to the dereferenced local_stack_var2 ...
5
votes
3answers
143 views

The method execution puzzle in Scala

First I declare a class: class Op(var x : Int) { def +++(op: Op) = { println(this.x + " +++ " + op.x) this.x += op.x this } def ***(op: Op) = { println(this.x + " *** " + ...
5
votes
8answers
247 views

Order of operations in C. ++ vs |=, which occurs first?

I have the following code that I'm reading through: if( (i%2) == 0 ){ *d = ((b & 0x0F) << 4); } else{ *d++ |= (b & 0x0F); }; I'm looking specifically at the else statement ...
4
votes
7answers
376 views

Operator Precedence - Expression Evaluation

For the following code snippet I get the output as 1. I want to know how it came? void main() { int x=10,y=20,z=5,i; i=x<y<z; printf("%d",i); }
4
votes
4answers
291 views

Pointer increment operator errors

Ok so this one has me really confused. I'm working on a HW problem, and discovered something that was really weird to me. here is the function and call in question int find_oldest_frame(int **a, int ...
3
votes
2answers
922 views

Pointer Arithmetic: ++*ptr or *ptr++?

I am learning C language and quite confused the differences between ++*ptr and *ptr++. for example: int x = 19; int *ptr = &x; I know ++*ptr and *ptr++ produce different results but I am not ...
3
votes
3answers
271 views

Operator precedence in C Definitions

Wikipedia claims that the [] operator precedes the * operator in evaluation. Then, why does the following statement: char *a[3]; declare an array of 3 character pointers, rather than a pointer to ...
3
votes
7answers
550 views

C #define macros

Here is what i have and I wonder how this works and what it actually does. #define NUM 5 #define FTIMES(x)(x*5) int main(void) { int j = 1; printf("%d %d\n", FTIMES(j+5), FTIMES((j+5))); } ...
2
votes
3answers
368 views

C Operator precedence (bitwise & lower than ==)

In the C programing language, why do the bitwise operators (& and |) have lower precedence than the equality operator (==)? It does not make sense to me.
2
votes
10answers
245 views

Rule of precedence == over =

I am just wondering would it be better to do this: if((fd = open(filename, O_RDWR)) == -1) { fprintf(stderr, "open [ %s ]\n", strerror(errno)); return 1; } or this fd = open(filename, O_RDWR); ...
2
votes
4answers
205 views

Why the output for “a” is -80?

#include<stdio.h> #include<conio.h> #define ABC 20 #define XYZ 10 #define XXX ABC - XYZ void main() { int a; a = XXX * 10; printf("\n %d \n", a); getch(); } I ...
2
votes
8answers
670 views

Understanding evaluation of expressions containing '++' and '->' operators in C

Consider this example: struct { int num; } s, *ps; s.num = 0; ps = &s; ++ps->num; printf("%d", s.num); /* Prints 1 */ It prints 1. So I understand that it is because according to ...
1
vote
6answers
124 views

Precedence of Logical Operators in C [closed]

Possible Duplicate: why “++x || ++y && ++z” calculate “++x” firstly ? however,Operator “&&” is higher than “||” If you look ...
1
vote
4answers
387 views

Operator precedence in j = j++ * ++j [closed]

Possible Duplicates: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) How do we explain the result of the expression (++x)+(++x)+(++x)? Why does the ...
1
vote
8answers
387 views

How does operator precedence grouping work in C for *, /, and %?

Referring to the O'Reilly pocket reference for C, I'm a little confused by the description for grouping of the *, /, and % operators. The book says that grouping occurs left to right -- now I think ...
0
votes
4answers
260 views

printing boolean result in C

I read that int c; while(c = getchar( ) != EOF) { putchar(c); } will print the value 0 or 1 depending on whether the next character is an EOF or not. Because != has a higher precedence than = ...
-1
votes
3answers
84 views

Operators precedence in C Programming

I am currently learning C Programming ( my first programming language ). I am a little bit confused with the operators precedence. Arithmetic operators precedence are as follows. * / % + - This ...
-1
votes
2answers
143 views

operator precedence in C same logic different outputs [closed]

Reopen Please vote for reopening this.It is not same question which is marked below. Note in this question () bracket has also been used.So using () braces should have a definite behavior. ...