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

Semrush - keyword research tool

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth
Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,848 questions

55,677 answers

573 users

How to use void pointers in C

1 Answer

0 votes
#include <stdio.h>
 
void printBytes(void *arr, int n) {
    for (int i = 0; i < n; i++) {
        printf("%02x ", ((char*)arr)[i]);
    }
}
 
    
int main() {
    int arr[] = { 15, 31, 32, 92 };
     
    printBytes(arr, 4 * sizeof(int));
 
    return 0;
}
     
     
          
/*
run:
       
0f 00 00 00 1f 00 00 00 20 00 00 00 5c 00 00 00 
    
*/

 



answered Dec 25, 2020 by avibootz

Related questions

2 answers 192 views
192 views asked May 12, 2023 by avibootz
1 answer 156 views
156 views asked May 30, 2023 by avibootz
1 answer 177 views
1 answer 190 views
190 views asked Jun 21, 2017 by avibootz
...