ASCII stands for
Answer / hon prajakta
ASCII stands for American Standard Code for Information Interchange.
| Is This Answer Correct ? | 0 Yes | 0 No |
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
What is string function in c?
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What is the output of printf("%d", printf("Hello"));?
Why is c called c not d or e?
Can we change the value of #define in c?
what is the use of using linked list and array?
How do I copy files?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
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