What will be the output of following program?
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
int k =1;
for(int i=1;i<=1;i++)
printf(%d,k++);
printf(%d,k);
system(PAUSE);
return 0;
Reveal answer
Fill a bubble to check yourself