Are local variables initialized to zero by default in c?


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

Post New Answer

More C Interview Questions

Find the highest of three numbers and print them using ascending orders?

1 Answers  


Can you write the algorithm for Queue?

0 Answers   College School Exams Tests, TCS,


why we wont use '&' sing in aceesing the string using scanf

0 Answers   HCL,


#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39

1 Answers   GameLoft,


what is compiler

6 Answers  






post new interiew question and aptitude test papers

1 Answers  


Can i use Two or More Main Funtion in any C program.?

4 Answers  


Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout

0 Answers   XYZ,


Using which language Test cases are added in .ptu file of RTRT unit testing???

0 Answers  


a C prog to swap 2 no.s without using variables just an array?

5 Answers   TCS,


Explain what does the format %10.2 mean when included in a printf statement?

0 Answers  


What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā€œ%d\nā€,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none

2 Answers  


Categories