1234554321
1234 4321
123 321
12 21
1 1
12 21
123 321
1234 4321
1234554321
No Answer is Posted For this Question
Be the First to Post Answer
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
Is python a c language?
What is mean by data types in c?
How to declare pointer variables?
What are the general description for loop statement and available loop types in c?
What is || operator and how does it function in a program?
Why is it important to memset a variable, immediately after allocating memory to it ?
write an interactive program to generate the divisors of a given integer.
If the static variable is declared as global, will it be same as extern?
What is structure packing in c?
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