1 votes
1 answer
1
#include<stdio.h>int main(){char *s = "Geeks Quiz";int n = 7;printf("%.*s", n, s);return 0;}
1 votes
2 answers
2
#include &#8236;<stdio.h int main(){ int i = 4; i = printf(" %d ", ++i) + printf(" %d ", i ); printf(" %d ", i); }
2 votes
1 answer
3
I always get confused between internal and external fragmentation.Is there any relation between them?pls explain in detail