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

Explain what are its uses in c programming?

0 Answers  


What is an identifier?

0 Answers  


what is the basis for selection of arrays or pointers as data structure in a program

0 Answers   TCS,


What are the types of i/o functions?

0 Answers  


What is the difference between near, far and huge pointers?

0 Answers  






1.write a program to merge the arrays 2.write efficient code for extracting unique elements from a sorted list of array?

3 Answers   Qualcomm,


#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

2 Answers   Facebook,


What is the difference between printf and scanf )?

0 Answers  


Explain what happens if you free a pointer twice?

0 Answers  


What is difference between static and global variable in c?

0 Answers  


Can you write the algorithm for Queue?

0 Answers   College School Exams Tests, TCS,


What is the difference between void main() and void main (void) give example programme?

0 Answers  


Categories