ASCII stands for
Answer / hon prajakta
ASCII stands for American Standard Code for Information Interchange.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are logical errors and how does it differ from syntax errors?
difference between ordinary variable and pointer in C?
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What do you mean by dynamic memory allocation in c?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
What is an example of structure?
main() { printf("hello"); fork(); }
What is a program flowchart and explain how does it help in writing a program?
A woman had somany gloves and hats 22 red,34 blue, 45 white...there was power cut and she took a glove and how many gloves shud she take so that she gets a pair of glove fr each color??
can we print any string in c language without using semicolon(;)(terminator) in whole program.
the data type used for unlimited value in c and how to do this program
What is a struct c#?