What is use of integral promotions in c?
No Answer is Posted For this Question
Be the First to Post Answer
what are non standard function in c
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
Multiply an Integer Number by 2 Without Using Multiplication Operator
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
whats the use of header file in c?
what is the difference between malloc() and calloc() function?
Why does the call char scanf work?
State two uses of pointers in C?
what is c language.
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
why programming language C is still used in operating system's kernel??
write a program that finds the factorial of a number using recursion?