Answer Posted / muhammad bilal
Structure:-
"Way in which components interconnect to each others"
Function:-
"Operation of individual behave as part of structure "
Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
How do you define CONSTANT in C?
what is the function of pragma directive in c?
Difference between Function to pointer and pointer to function
Why doesnt that code work?
What are the similarities between c and c++?
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
Explain what is output redirection?
What is int main () in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
what is the format specifier for printing a pointer value?
Are the expressions * ptr ++ and ++ * ptr same?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
Is a house a mass structure?
Does sprintf put null character?