Where local variables are stored in c?


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

Post New Answer

More C Interview Questions

Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.

12 Answers   MIT, TCS,


main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }

22 Answers   NDS, TCS,


How #define works?

0 Answers  


What are static variables in c?

0 Answers  


Is fortran still used in 2018?

0 Answers  






program that accepts amount in figures and print that in words

2 Answers   Infosys, Lovely Professional University, Wipro,


How do you determine the length of a string value that was stored in a variable?

0 Answers  


What is the difference between static and global variables?

1 Answers  


what is the function of pragma directive in c?

0 Answers  


Describe the header file and its usage in c programming?

0 Answers  


Write a program to generate the first n terms in the series --- 9,11,20,31,...,82

1 Answers   Cognizant,


Program to trim a given character from a string.

5 Answers   NetApp,


Categories