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 |
What is Function Pointer? Explain with example?
Explain the use of 'auto' keyword
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..
In which category does main function belong??
can v write main() { main(); } Is it true?
how to swap two nubers by using a function with pointers?
Does c have an equivalent to pascals with statement?
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); }
What is the modulus operator?
post new interiew question and aptitude test papers
What is the difference between void main and main in c?
What is #ifdef ? What is its application?