Computer Science, asked by totoyfranz, 1 month ago

how is the value 2..45×10^-5 expresses as a c++literal​

Answers

Answered by kannareddyc6543
0

#include <stdio.h>

int main()

{

// constant integer literal

const int intVal = 10;

printf("Integer Literal:%d \n",

intVal);

return 0;

}

Similar questions