a value that does not change during program execution

a) variabe

b) argument

c) parameter

d) none


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

Post New Answer

More C Interview Questions

Explain what is the stack?

0 Answers  


Write a program to generate the Fibinocci Series

0 Answers   TISL,


f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?

9 Answers   Hughes, Tech Mahindra,


Write a C program where input is: "My name is xyz". output is: "xyz is name My".

1 Answers   TCS,


What are external variables in c?

0 Answers  






Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)

0 Answers  


What is a function in c?

0 Answers  


How do you do dynamic memory allocation in C applications?

0 Answers  


what are the files which are automatically opened when a c file is executed?

3 Answers  


what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }

6 Answers   IBM,


how do you redirect stdout value from a program to a file?

1 Answers  


Is c dynamically typed?

0 Answers  


Categories