Design a program which assigns values to the array
temperature. The program should then display the array with
appropriate column and row headings.
No Answer is Posted For this Question
Be the First to Post Answer
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
can we store values and addresses in the same array? explain
What are volatile variables?
Explain how to reverse singly link list.
What is a pointer in c?
What is the size of array float a(10)?
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
What is that continue statement??
Stimulate calculator using Switch-case-default statement for two numbers
Why do we use int main instead of void main in c?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above