reopened by
294 views
0 votes
0 votes

Please provide solution

reopened by

Please log in or register to answer this question.

Related questions

5 votes
5 votes
1 answer
2
amrendra pal asked Aug 28, 2017
504 views
#include<stdio.h int Abc(){ static int i = 19; return i; } int main(){ for(Abc() ; Abc() ; Abc()){ printf("%d ", Abc()); } return 0; }
2 votes
2 votes
3 answers
3
Laahithyaa VS asked Sep 9, 2023
952 views
. What will be the value returned by the following function, when it is called with 11?recur (int num){if ((num / 2)! = 0 ) return (recur (num/2) *10+num%2);else return 1...
1 votes
1 votes
1 answer
4
Himani Srivastava asked Oct 16, 2015
7,899 views
amount of time it would take to send 500 packets using 6-packet size window and without sliding window will be, when the time to send in one direction is 5 ms31000, 50004...