sum of digit of a number in c Get link Facebook X Pinterest Email Other Apps June 08, 2020 #include<stdio.h> int main() { int digit, temp, output = 0; printf("input : "); scanf("%d", &temp); while(temp>0){ digit = temp%10; output = output + digit; temp = temp/10; } printf("output : %d", output); } OUTPUT : testcase 1 - input : 11 testcase 2 - input : 123 Get link Facebook X Pinterest Email Other Apps Comments
JWT auth March 22, 2020 This token are signed by one party's private bey, so that both parties are able to verify that token is legitimate. The tokens are designsed to be compact, URL-safe , and usable especially in a web-browser single-sign-on (SSO) context. Read more
Comments
Post a Comment