how to write a c program to print list of fruits in
alpabetical order?
No Answer is Posted For this Question
Be the First to Post Answer
What is exit() function?
How can I change their mode to binary?
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
What is external variable in c?
Why use int main instead of void main?
How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include<stdio.h>...
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
Are there any problems with performing mathematical operations on different variable types?
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
Explain what is wrong in this statement?
what is ANSI and ISO
Is this program statement valid? INT = 10.50;