main()
{
charx;
while (x=0;x<=255;x++)
printf("\nAscii value %d Character %c,x,x);
}

Answers were Sorted based on User's Feedback



main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); ..

Answer / abdulhamid

actually iwanna the answer.

Is This Answer Correct ?    3 Yes 1 No

main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); ..

Answer / niranjan kumar niraj

output is ascii value & character

Is This Answer Correct ?    2 Yes 5 No

Post New Answer

More C Interview Questions

Are the variables argc and argv are local to main?

0 Answers   TISL,


In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT

1 Answers   IBM,


Why c is called a mid level programming language?

0 Answers  


What is meant by 'bit masking'?

0 Answers  


7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.

0 Answers  


how the size of an integer is decided? - is it based on processor or compiler or OS?

19 Answers   HCL, JPR, Microsoft, nvidia,


What does malloc () calloc () realloc () free () do?

0 Answers  


2. Counting in Lojban, an artificial language developed over the last fourty years, is easier than in most languages The numbers from zero to nine are: 0 no 1 pa 2 re 3 ci 4 vo 5 mk 6 xa 7 ze 8 bi 9 so Larger numbers are created by gluing the digit togather. For Examle 123 is pareci Write a program that reads in a lojban string(representing a no less than or equal to 1,000,000) and output it in numbers.

3 Answers   Nagarro,


when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .

4 Answers  


What are the parts of c program?

0 Answers  


What does it mean when the linker says that _end is undefined?

0 Answers  


WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS

4 Answers  


Categories