recategorized
1,689 views

1 Answer

Answer:

Related questions

1 votes
1 votes
3 answers
1
go_editor asked Jul 21, 2016
2,586 views
Consider the following program segment:d=0; for(i=1; i<31, ++i) for (j=1; j < 31; ++j) for (k=1; k < 31; ++k) if((i+j+k%3)==0)) d=d+1; printf(“%d”, d);The output will...
1 votes
1 votes
2 answers
2
go_editor asked Jul 21, 2016
3,628 views
What is the size of the following union? Assume that the size of int=2, size of float =4, size of char=1union tag { int a; float b; char c; };2417