retagged by
267 views

Related questions

0 votes
0 votes
3 answers
1
0 votes
0 votes
1 answer
2
0 votes
0 votes
1 answer
3
2 votes
2 votes
3 answers
4
Gurdeep Saini asked Jan 14, 2019
1,695 views
#include <stdio.h>int arr[] = { 10, 20, 30, 40, 50 };static int count ;inc() {return ++count;}int main(){arr[count++]=inc();printf("%d ", arr[count]);printf("%d ", arr[0]...