Sorry! Posting Assignment is allowed only for commercial accounts.
#includestdio.hstruct student{int no;char name[20];}void main(){struct student s;s.no=8;printf("sookshmaa");}
main() { char *p; p = "Hello"; printf("%c", *&*p) ;} What will be the output?
#includestdio.hint main(){ int a=9; int b=7; int c=++a; printf("%d",a%b%c); return 0;}