So i really want this to happen. I have an integer variable and i want to use that variable to give spacing in my printf function but C doesn't give me permission to do that , is there any way around it.
#include<stdio.h>
int main(void){
int s = 5;
printf("%sd",s);
}
Thanks a lot in advance!