Index › Forums › System Verilog › Trail Tagged: test#3 This topic has 2 replies, 3 voices, and was last updated 1 year ago by test. Creator Topic November 16, 2022 at 11:41 am #650 PayalParticipant Test#1 Creator Topic Viewing 2 replies - 1 through 2 (of 2 total) Author Replies November 16, 2022 at 11:41 am #651 forumlzKeymaster Up2Down:: Okay Test#2 November 16, 2022 at 11:44 am #653 testParticipant Up0Down:: test this method #include<stdio.h> int main() { int n,r,sum=0,temp; printf("enter the number="); scanf("%d",&n); temp=n; while(n>0) { r=n%10; sum=(sum*10)+r; n=n/10; } if(temp==sum) printf("palindrome number "); else printf("not palindrome"); return 0; } Author Replies Viewing 2 replies - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In Log in / Register