main()
{
struct test
{
char c;
int i;
char m;
} t1;
printf("%d %d\n", sizeof(t1), sizeof(t1.c));
}
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.
How can variables be characterized?
What does %d do?
What are examples of structures?
What does & mean in scanf?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What are predefined functions in c?
What is c language & why it is used?
Write a program for print infinite numbers
what is develop in c language
In C language, a variable name cannot contain?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.