closed by
209 views
–1 votes
–1 votes
closed with the note: incomplete question
closed by

Related questions

1 votes
1 votes
1 answer
1
Nishikant kumar asked Nov 16, 2015
948 views
void abc(int x, int y){ pf("%d%d", x, y); } void main(){ int a; a = 12; abc(++a, a++); pf("%d", a); }14,12,1413,12,1311,12,1214,14,14
0 votes
0 votes
1 answer
2
1 votes
1 votes
1 answer
3
. asked Apr 2, 2017
1,610 views
What will be the output of the following C program? If you think it will give a runtime error, you need to mention it. In either case,your answer must include proper just...
0 votes
0 votes
1 answer
4
Rohit Gupta 8 asked Nov 8, 2017
7,129 views
Let A be a square matrix of size n x n. Consider the following program. What is the expected output?C = 100 for(i=0; i<n; i++) for (j=0; j<n; j++) { Temp = A[i][j] + C A[...