Explain what is a program flowchart and explain how does it help in writing a program?


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

Post New Answer

More C Interview Questions

Why is the code below functioning. According to me it MUST NOT.

1 Answers  


What are macros in C?

2 Answers  


int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????

1 Answers  


What does sizeof int return?

0 Answers  


How do you write a program which produces its own source code as output?

0 Answers  


for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }

1 Answers  


How can I split up a string into whitespace-separated fields?

0 Answers  


What should be keep precautions while using the recursion method?

1 Answers  


Explain two-dimensional array.

0 Answers  


Develop a program that computes the new price of an item. The program should receive a character variable colour and a double precision floating-point variable price from the user. Discount rate is determined based on the colour of the discount sticker, as shown in the following table. An error message should be printed if an invalid colour has been entered

1 Answers  


Explain what is page thrashing?

0 Answers  


c program to manipulate x=1!+2!+3!+...+n! using recursion

1 Answers   TCS,


Categories