Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW
IT COME ..

#include<stdio.h>
#include<conio.h>
void main()
{
int k=20;
printf("%d%d%d%d",k,k++,++k,k);
getch();
}

Answer Posted / pratik

but how answer came ? ?

Is This Answer Correct ?    0 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is optimization in c?

953


What does c mean in standard form?

1108


What are the different types of control structures in programming?

1088


What is c standard library?

1151


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

1007


write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays

2188


What is the difference between procedural and functional programming?

1012


What is use of bit field?

1237


What is the use of header?

1054


What is %s and %d in c?

976


What is the difference between scanf and fscanf?

1203


How do you define CONSTANT in C?

1214


What is the difference between array and linked list in c?

1088


What are the disadvantages of a shell structure?

1269


Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

1039