1
Reply

What will be the output of the following C program?

Sourabh Somani

Sourabh Somani

Jun 05, 2019
566
1
  1. #include<stdio.h>
  2. #include<conio.h>
  3. int main(int argc,char* argv[])
  4. {
  5. int i=10;
  6. printf("%d",i++);
  7. }