Question Number 191232 by BaliramKumar last updated on 21/Apr/23
Question Number 125666 by fajri last updated on 12/Dec/20
Question Number 125042 by kaivan.ahmadi last updated on 07/Dec/20
Question Number 190569 by cortano12 last updated on 06/Apr/23
Question Number 190568 by cortano12 last updated on 06/Apr/23 Commented by Rasheed.Sindhi last updated on 11/Apr/23
Question Number 190544 by cortano12 last updated on 05/Apr/23
Question Number 124944 by udaythool last updated on 07/Dec/20
Question Number 124795 by benjo_mathlover last updated on 06/Dec/20 Answered by mathmax by abdo last updated on 17/Dec/20
Question Number 190285 by Abdullahrussell last updated on 31/Mar/23 Commented by ARUNG_Brandon_MBU last updated on 31/Mar/23 #include <stdio.h> int main(void) { unsigned int a, b; for (a = 100; a<1000; a++) { for (b = 300; b<1000; b++) { if (1001*a+1 == b*b) goto loopend; } } loopend: printf ("a = %u, b = %u", a, b); return 0; } Commented by ARUNG_Brandon_MBU last updated on 31/Mar/23 Output: a = 183, b = 428…
Question Number 190286 by Abdullahrussell last updated on 31/Mar/23 Answered by talminator2856792 last updated on 31/Mar/23