What will be the output?
Posted 2022-10-31 07:27:07
0
3K
#include <stdio.h>
int main()
{
int testInteger = 5;
printf("Number = %d", testInteger);
return 0;
}