What will be the output of the following C program?
Sourabh Somani
#include<stdio.h>#include<conio.h>int main(int argc,char* argv[]){ int i=10; printf("%d",i++);}
#include<stdio.h>
#include<conio.h>
int main(int argc,char* argv[])
{
int i=10;
printf("%d",i++);
}
This is really good