main()
{
charx;
while (x=0;x<=255;x++)
printf("\nAscii value %d Character %c,x,x);
}
Answers were Sorted based on User's Feedback
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(“%d”,x); }
whenever a question is posted in a particular category in allinterview.com, Is there any facility to receive an indication mail. For eg: I need to receive an indication email, whenever a question is posted under the category “C Langauage”.
difference between object file and executable file
Can we initialize extern variable in c?
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
What are the complete rules for header file searching?
Write a function to find the area of a triangle whose length of three sides is given
What should malloc() do?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
Why is #define used?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;