Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,970 questions

51,912 answers

573 users

How to select random two consecutive digits from a number in C

1 Answer

0 votes
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

// Function to get random two consecutive digits from a number
void getRandomTwoDigits(int num, char *out) {
    char s[16];  // buffer to hold number as string
    sprintf(s, "%d", num);

    int len = strlen(s);

    if (len < 2) {
        strcpy(out, "Err");  // not enough digits
        return;
    }

    int start = rand() % (len - 1);

    strncpy(out, s + start, 2);
    out[2] = '\0';
}

int main(void) {
    srand((unsigned)time(NULL)); 

    int num = 123456;  
    char randomTwo[3]; 

    getRandomTwoDigits(num, randomTwo);

    printf("Random two digits: %s\n", randomTwo);

    return 0;
}


   
/* 
run:
   
Random two digits: 23
 
*/

 



answered Nov 25, 2025 by avibootz
...