Answer Posted / ketan deshmukh
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
for (i=0;i<255;i++)
printf("ASCII for %d is %c\n",i,i);
getch();
}
| Is This Answer Correct ? | 8 Yes | 7 No |
Post New Answer View All Answers
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Explain the difference between strcpy() and memcpy() function?
Explain what math functions are available for integers? For floating point?
Why is c so popular?
How can you draw circles in C?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
What is use of #include in c?
What is else if ladder?
What is break in c?
Explain what is a stream?
What is typedef struct in c?
What is strcpy() function?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Where are the auto variables stored?