What is a program flowchart and how does it help in writing a program?
No Answer is Posted For this Question
Be the First to Post Answer
What does *p++ do?
Write a C program in Fibonacci series.
can anyone please tell about the nested interrupts?
Explain how can I make sure that my program is the only one accessing a file?
5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
What do the functions atoi(), itoa() and gcvt() do?
int x=5; printf("%d%d%d",x,x<<2,x>>2);
What are the general description for loop statement and available loop types in c?
Input any no. and print all the the numbers that comes before it like this for e.g input = 4 0 01 012 0123 01234 plz answer it 2day
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
How can I insert or delete a line (or record) in the middle of a file?