write a program for size of a data type without using
sizeof() operator?
Answer Posted / puneet
PLS TYPE ANSWER
| Is This Answer Correct ? | 16 Yes | 12 No |
Post New Answer View All Answers
Can the “if” function be used in comparing strings?
When can you use a pointer with a function?
what is the difference between class and unio?
What is bss in c?
How do I swap bytes?
Explain what are global variables and explain how do you declare them?
What is function prototype in c with example?
Differentiate abs() function from fabs() function.
Why header file is used in c?
Place the #include statement must be written in the program?
Write a program to check whether a number is prime or not using c?
What is a volatile keyword in c?
can we implement multi-threads in c.
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none