void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
4 8177#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 2511Write 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,
2061Write 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
5694write 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
2005Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
1 5839Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
HP,
2204
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What is a wrapper function in c?
What are nested functions in c?
Can a pointer point to null?
What is the difference between a function and a method in c?
Explain what is the benefit of using #define to declare a constant?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
What is the difference between a string and an array?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What are the benefits of organizational structure?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What math functions are available for integers? For floating point?
What are the different types of constants?
How do I use strcmp?