6
C में int64_t टाइप कैसे प्रिंट करें
C99 मानक में बाइट्स आकार के साथ पूर्णांक प्रकार जैसे कि int64_t है। मैं निम्नलिखित कोड का उपयोग कर रहा हूं: #include <stdio.h> #include <stdint.h> int64_t my_int = 999999999999999999; printf("This is my_int: %I64d\n", my_int); और मुझे यह संकलक चेतावनी मिली: warning: format ‘%I64d’ expects type ‘int’, but argument 2 has …