regarding the scope of the varibles;identify the incorrect
statement:
a.automatic variables are automatically initialised to 0
b.static variables are are automatically initialised to 0
c.the address of a register variable is not accessiable
d.static variables cannot be initialised with any expression



regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are..

Answer / guest

a

Is This Answer Correct ?    13 Yes 1 No

Post New Answer

More C Interview Questions

#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }

3 Answers   IBM,


Explain what is page thrashing?

0 Answers  


What is the size of a union variable?

0 Answers  


main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }

5 Answers   Vector, Vector Solutions,


main() { clrscr(); } clrscr();

6 Answers   ME, Wipro,






What is the value of uninitialized variable in c?

0 Answers  


how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"

1 Answers  


What is call by value in c?

0 Answers  


Differentiate between the = symbol and == symbol?

0 Answers  


What is cohesion and coupling in c?

0 Answers  


#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.

8 Answers   IBM,


Explain the use of 'auto' keyword in c programming?

0 Answers  


Categories