void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
4 7871#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 2391Write 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,
1968Write 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
5572write 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
1894Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
1 5660Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
HP,
2123
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
How to declare pointer variables?
What does c mean?
How do we make a global variable accessible across files? Explain the extern keyword?
Differentiate between a structure and a union.
List some of the dynamic data structures in C?
What is the use of getchar functions?
How can my program discover the complete pathname to the executable from which it was invoked?
Compare interpreters and compilers.
Are there namespaces in c?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
please explain every phase in the "SDLC" in the dotnet.
Explain what are global variables and explain how do you declare them?
write a program for the normal snake games find in most of the mobiles.
What are the different types of C instructions?