Program to trim a given character from a string.
Answer Posted / dj
best of luck for tomorrow's test
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Can we access the array using a pointer in c language?
How does free() know explain how much memory to release?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
Can we initialize extern variable in c?
Explain what are multibyte characters?
Explain how can I make sure that my program is the only one accessing a file?
What is a program?
What is a built-in function in C?
How do I swap bytes?
What is the use of extern in c?
What is pointers in c with example?
Apart from dennis ritchie who the other person who contributed in design of c language.
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is the c language function prototype?
How many levels deep can include files be nested?