Explain the use of 'auto' keyword in c programming?


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

Post New Answer

More C Interview Questions

What does c value mean?

0 Answers  


f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?

7 Answers   Hughes,


Explain how do you generate random numbers in c?

0 Answers  


Write a code to generate divisors of an integer?

0 Answers   Ericsson,


Explain how can you tell whether two strings are the same?

0 Answers  






#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?

4 Answers   Infosys,


what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??

5 Answers  


what is object oriental programing?

1 Answers  


What is #define size in c?

0 Answers  


Where can I get an ansi-compatible lint?

0 Answers  


we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?

0 Answers  


Ca some one please help me with aC code to allow user enter numbers from 1 to 20 without repeating and prnt the sum of those numbers thnx

4 Answers  


Categories