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...

1.what are local and global variables?
2.what is the scope of static variables?
3.what is the difference between static and global variables?
4.what are volatile variables?
5.what is the use of 'auto' keyword?
6.how do we make a global variable accessible across files?
Explain the extern keyword?
7.what is a function prototype?
8.what does keyword 'extern' mean in a function declaration?

Answer Posted / rajan

Explain the out put
#include<stdio.h>
extern int i;
main()
{
printf("%d",i);
}
#include<stdio.h>
extern int i;
main()
{
printf("%d",i);
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

1156


Differentiate between static and dynamic modeling.

1133


Why do some versions of toupper act strangely if given an upper-case letter?

1078


What are operators in c?

1029


What is %d used for?

1042


What are identifiers in c?

1204


What will be the outcome of the following conditional statement if the value of variable s is 10?

1296


What is an identifier?

1036


Why should I prototype a function?

1201


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

1095


Discuss the function of conditional operator, size of operator and comma operator with examples.

1160


how to make a scientific calculater ?

2075


what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?

1859


How main function is called in c?

1127


Is this program statement valid? INT = 10.50;

1157