void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
4 8047#include
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
1 2454Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
CLG,
2008Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
5646write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
1953Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
1 5758Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
HP,
2159
How can I avoid the abort, retry, fail messages?
Explain the meaning of keyword 'extern' in a function declaration.
What are types of structure?
What are the main characteristics of c language describe the structure of ac program?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Which built-in library function can be used to match a patter from the string?
Discuss the function of conditional operator, size of operator and comma operator with examples.
What is memcpy() function?
Explain what is the purpose of "extern" keyword in a function declaration?
What is a far pointer in c?
What is array of pointers to string?
What are the features of the c language?
I need a sort of an approximate strcmp routine?
What will be the outcome of the following conditional statement if the value of variable s is 10?
Explain how can I open a file so that other programs can update it at the same time?