30 Function, Operators, printf, scanf #include< stdio.h >int main(){int a;printf("enter no.");scanf("%d",&a)+1;a=printf("%d",a++)+a;printf("%d",a);return 0;}Output:enter no.224Note: This program will show one warning i.e.,"Code Has no effect" (scanf("%d",&a)+1; this line does nothing). Share this Share on FacebookTweet on TwitterPlus on Google+ Related Posts60What is the output of the following program?73334732