examples of continue statement in C July 18, 2020 #include <stdio.h> int main() { int a, b; printf("Enter the number you want multiplication of :-\n"); scanf("%d",&a); for(b=1;b<=10;b++){ if(b==7){ continue; } printf("%d*%d = %d\n",a,b,a*b); } return 0; } Share Get link Facebook X Pinterest Email Other Apps Labels c programming Share Get link Facebook X Pinterest Email Other Apps Comments
example of typecasting in c July 18, 2020 /*Type Casting in C Typecasting allows us to convert one data type into other. */ //simple example to cast int value into the float. #include <stdio.h> int main (){ float f = ( float ) 9 / 4 ; printf ( "f : %f \n " , f ); return 0 ; } Read more
Comments
Post a Comment