Sorry! Posting Assignment is allowed only for commercial accounts.
#include<stdio.h>#include<stdlib.h>int main(){ int x =5,y=14; int *a = &x; int *b = &y; printf("%d\t",a-b); printf("%d",*a-*b); exit(0);}
arr[5]={1,2,3,4}for(int ele:arr) print(ele)
#include<stdio.h>main(){ int x = 1; float y = x>>2; printf( "%f", y );}