0
#include <stdio.h> int main() { printf("%d"+1, 123); printf("\n%d\n"); printf("%%d"); return 0; }
Need explanation for the output of program in c language Output comes d 123 %d
3 Answers
+ 3
C programming
https://www.sololearn.com/discuss/635969/?ref=app
+ 3
you only passed one value the the int - decimal spectier
printf("place_holder",value_given_to_placeholder);
printf("%d",1984);
outputs: 1984
printf("%d");
output: %d
+ 3
Please do not forget, to give the best answer checkmark. To the user that best answers your question.