recategorized by
357 views
0 votes
0 votes

is it correct solution if it is correct please explain it.

recategorized by

Please log in or register to answer this question.

Related questions

3 votes
3 votes
0 answers
3
Mk Utkarsh asked Jan 16, 2018
658 views
#include<stdio.h extern int i; int main() { printf( "%d" , i); } int i;What will be the order of execution of this code (line by line)?
4 votes
4 votes
0 answers
4
vishal chugh asked Jan 9, 2018
597 views
Shouldn't be the value of first 'x' after assignment remain 3 and not change due to evaluation of function or is the value updated once the function evaluates?