Search results for programming+easy

29 votes
2 answers
5
26 votes
3 answers
6
42 votes
9 answers
10
52 votes
3 answers
12
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...
0 votes
1 answer
14
2 votes
3 answers
16
2 votes
1 answer
19
0 votes
2 answers
20
#include <stdio.h int main(){ int a[] = {5,3,7,2,4}; int *p = &a[3]; p -= *p; printf("%d ",*p); return 0; } output is 3.Why 2 * sizeof(int) is doene.?