What do you mean by scope of a variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
Is c dynamically typed?
is forign key will be unique key any table or not?
wat are the two methods for swapping two numbers without using temp variable??
Explain how do you generate random numbers in c?
what is a far pointer
12 Answers ABB, DRDO, ITI, Maruti Suzuki, Steel Plant, TCS, Toyota, Vivo Mobiles,
what is the associativity of bitwise OR operator?
swap 2 numbers without using third variable?
write a c program for swapping two strings using pointer
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
Is it possible to execute code even after the program exits the main() function?
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }