pre increment in c program Get link Facebook X Pinterest Email Other Apps September 18, 2022 #include <stdio.h>#include <stdlib.h>int main(){ int a=10,b=1000; a=++a;b=++b; printf("value a:%d,b :%d",a,b); return 0;} Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment