What is volatile c?
No Answer is Posted For this Question
Be the First to Post Answer
Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?
What does *p++ do? What does it point to?
what is the flow of execution in cprogram? ex:printf();,scanf();
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); }
How to avoid structure padding in C?
When was c language developed?
what is use#in c
Tell me is null always defined as 0(zero)?
what is the value of b if a=5; b=++a + ++a
31 Answers Infosys, TCS, Tech Mahindra,
code for selection sort?
How do you initialize pointer variables?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(