492 views

1 Answer

1 votes
1 votes

Related questions

0 votes
0 votes
1 answer
1
Anjana Babu asked Jan 8, 2017
556 views
In a 16-bit machine Size of Int Size of pointer are same ? What I knew is 8bit = 1BChar will take - 1 BInt - 2B if integer pointer size is p then size of flot / double ...
1 votes
1 votes
1 answer
2
iarnav asked Apr 18, 2017
675 views
Please kindly tell the full code with the use of sizeof() operator. Thanks!
0 votes
0 votes
1 answer
3
ermp888 asked Jun 30, 2018
669 views
6. Would the following program compile?main( ) { int a = 10, *j; void *k; j = k = &a; j++ ; k++; printf ("\n %u %u", j, k ) ; }Please explain above program with some exam...
1 votes
1 votes
1 answer
4
ermp888 asked Jun 30, 2018
841 views
(5) Would the following program give a compilation error or warning?main() { float i = 10, *j; void *k; k=&i; j= k; printf("\n%f", *j); }