Recent activity by mahendrapatel

9 answers
1
How many $4$-digit even numbers have all $4$ digits distinct?$2240$$2296$$2620$$4536$
1 answer
4
#include <stdio.h int main() {int i,j,x;scanf("%d ",x);i=1;j=1;while(i<10){j=j*i;i=i+1;if(i==x) break;}return 0;}
7 answers
5
Which of the following fields of an IP header is NOT modified by a typical IP router?Check sumSource addressTime to Live (TTL)Length
1 answer
7
What are the preparation related mistakes that should be avoided strictly for a repeater?
3 answers
9
7 answers
13
1 answer
20
Someone please explain. Function of ‘^’
3 answers
23
The most appropriate matching for the following pairs$$\begin{array}{|ll|ll|}\hline X: & \text{m = malloc(5); m = NULL;} & 1: & \text{using dangling pointers} \\\hline Y...
3 answers
25
What does the following program print?#include<stdio.h void f(int *p, int *q) { p=q; *p=2; } int i=0, j=1; int main() { f(&i, &j); printf("%d %d\n", i,j); return 0; }$2 \...