struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
9 16022what is the output of the following program and explain the
answer
#include
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
2389design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.
2 6189i want to have a program to read a string and print the frequency of each character and it should work in turbo c
3 9253
Is there any data type in c with variable size?
Can we assign string to char pointer?
Disadvantages of C language.
Can we use any name in place of argv and argc as command line arguments?
The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 …). Records the times. c). Do an analysis of the differences in times and submit it in class.
State two uses of pointers in C?
What is difference between far and near pointers?
c program for searching a student details among 10 student details
Explain enumerated types.
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What is #include cctype?
Can include files be nested?
What are the ways to a null pointer can use in c programming language?
Can you pass an entire structure to functions?
what is use of malloc and calloc?