A variable that is defined in a specified portion of a program but can be used throughout the program

a) global variable

b) local variable

c) character

d) none


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is the value of c?

0 Answers  


what is disadvantage of pointer in C

13 Answers   Tech Mahindra,


list the no of files created when c source file is compiled

9 Answers   TCS,


What are the ways to a null pointer can use in c programming language?

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,






What is structure and union in c?

0 Answers  


What is the use of printf() and scanf() functions?

0 Answers  


What does typedef struct mean?

0 Answers  


Write a program to find the given number is odd or even without using any loops(if,for,do,while)

4 Answers   CNC, Gokul,


enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program

1 Answers  


What is the difference between volatile and const volatile?

0 Answers  


How can I automatically locate a programs configuration files in the same directory as the executable?

0 Answers  


Categories