572 views
0 votes
0 votes

Operator precedence rule for prefix and postfix ++For C programming is the above mentioned article considered as standard, Is there any standard compiler or C standard that GATE follows for evaluation, and are there any more such exceptions, please do let me know? 

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
Lakshman Bhaiya asked Mar 1, 2018
2,277 views
Q)If a is 15, then what would be the value of:printf("%d , %d , %d , %d ", ++a , a++, a , a );A)16,16,16,16 B)15,13,15,15C)16,15,14,14 D)16,16,14,14
0 votes
0 votes
1 answer
2
Chhotu asked Nov 20, 2017
520 views
Hi,Why multiple dereferencing is not creating problem in the following program ?https://ideone.com/3Li06v (Check line 1,2 & 3. all are giving same O/P)
0 votes
0 votes
1 answer
3
0 votes
0 votes
3 answers
4
lalitver10 asked Oct 23, 2021
667 views
#include <stdio.h>int main(){ int a=20; int *ptr=&a; int x=a; printf ("%p\n",&*ptr); printf ("%p\n",&a); return 0;}Why both printf() line printing the s...