main()
{
charx;
while (x=0;x<=255;x++)
printf("\nAscii value %d Character %c,x,x);
}
Answers were Sorted based on User's Feedback
What is pivot in c?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
How can I swap two values without using a temporary?
Why does everyone say not to use scanf? What should I use instead?
What does p mean in physics?
what is the defrenece between structure and union
what is the coding of display the factorial of a number using array and function?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
The __________ attribute is used to announce variables based on definitions of columns in a table?
how to create duplicate link list using C???
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
How do I read the arrow keys? What about function keys?