[04-03-2025 16:54] Salim Shaikh: #include<stdio.h> int main() { int a,b; printf("enter valuve of a:"); scanf("%d",&a); printf("enter valuve of b:"); scanf("%d",&b); printf("addition of both is:%d", a+b); return 0; } [05-03-2025 16:13] Salim Shaikh: #include<stdio.h> int main() { int age; printf("enter number:"); scanf("%d",&age); if (age>18) { printf("you can give your vote\n"); } else { printf("you can not give vote\n"); } printf("thankyou"); return 0; } [05-03-2025 16:37] Salim Shaikh: #include<stdio.h> int main() { int age; p...
Comments
Post a Comment