Computer Science, asked by 30chodoma, 3 months ago

assume variable A holds 10 solve in increment operator (A++)​

Answers

Answered by Kalihacker
0

Answer:

#include <stdio.h> int main() {

int a=10;

printf("%d",++a);

}

Output:

11

Similar questions