373 views
0 0 votes

How does the following expression evaluate to if suppose n=2

a[++n]=n++;

 

Please log in or register to answer this question.

Position:
Show:

Related questions

0 0 votes
1 1 answer
619
619 views
CJ147 asked Oct 13, 2018
619 views
How does the following expression evaluate to if suppose n=2n=2; a[++n]=n++;
0 0 votes
0 0 answers
398
398 views
CJ147 asked Oct 13, 2018
398 views
How does the array related expression in printf works #include <stdio.h int main(void) { // your code goes here int a[3][4] = { 1,2,3,4,5,6,7,8,9,10,11,12 }; printf("%u",...
0 0 votes
0 0 answers
723
723 views
CJ147 asked Oct 13, 2018
723 views
What is the output of this code void main(){ char *s = "\12345678\n"; printf("%d",sizeof(s)) }
0 0 votes
1 answers 1 answer
878
878 views
iarnav asked Apr 25, 2017
878 views
#include <stdio.h #include <math.h int main() { int number, originalNumber, remainder, result = 0, n = 0 ; printf("Enter an integer: "); scanf("%d", &number); originalNum...