void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
4 7837#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 2366Write 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,
1955Write 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
5559write 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
1888Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
1 5639Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
HP,
2110
Explain the use of #pragma exit?
What is the data segment that is followed by c?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What are examples of structures?
What are the different types of linkage exist in c?
Why is structure important for a child?
What is structure and union in c?
What is an endless loop?
What is wrong with this statement? Myname = 'robin';
Can we change the value of static variable in c?
write a program to create a sparse matrix using dynamic memory allocation.
What is .obj file in c?
What does 2n 4c mean?
What is #ifdef ? What is its application?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile