What is a char c?



What is a char c?..

Answer / Vinod Verma

A char c is a single character variable declared in the C programming language. It occupies 2 bytes of memory on most systems.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What is Function Pointer? Explain with example?

3 Answers  


Explain the use of 'auto' keyword

1 Answers  


write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..

1 Answers  


In which category does main function belong??

5 Answers  


can v write main() { main(); } Is it true?

6 Answers  


how to swap two nubers by using a function with pointers?

1 Answers  


Does c have an equivalent to pascals with statement?

1 Answers  


i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


What is the modulus operator?

1 Answers  


post new interiew question and aptitude test papers

1 Answers  


What is the difference between void main and main in c?

1 Answers  


What is #ifdef ? What is its application?

1 Answers   TCS,


Categories