how to find the size of the data type like int,float
without using the sizeof operator?
Answer Posted / gururaj
Vishnu,
How can char * hold address of float????
| Is This Answer Correct ? | 3 Yes | 7 No |
Post New Answer View All Answers
Is c is a low level language?
What is the symbol indicated the c-preprocessor?
Why dont c comments nest?
Add Two Numbers Without Using the Addition Operator
Explain threaded binary trees?
Explain high-order and low-order bytes.
Can true be a variable name in 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 the difference between structs and unions in c?
What are the advantages of using linked list for tree construction?
Tell me what is the purpose of 'register' keyword in c language?
How are structure passing and returning implemented?
What is the use of a conditional inclusion statement in C?
please explain every phase in the "SDLC" in the dotnet.
Discuss the function of conditional operator, size of operator and comma operator with examples.