Explain what is a program flowchart and explain how does it help in writing a program?
Why is the code below functioning. According to me it MUST NOT.
What are macros in C?
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????
What does sizeof int return?
How do you write a program which produces its own source code as output?
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
How can I split up a string into whitespace-separated fields?
What should be keep precautions while using the recursion method?
Explain two-dimensional array.
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
Explain what is page thrashing?
c program to manipulate x=1!+2!+3!+...+n! using recursion