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
Why is struct padding needed?
can we have joblib in a proc ?
Explain output of printf("Hello World"-'A'+'B'); ?
What is pointer to pointer in c with example?
When should the volatile modifier be used?
Why do we need functions in c?
Why doesnt long int work?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
What is the function of multilevel pointer in c?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
Apart from dennis ritchie who the other person who contributed in design of c language.
How to declare a variable?
what are enumerations in C
Where are some collections of useful code fragments and examples?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.