Answer Posted / guest
it is a simple English alphabet C nothing else.
| Is This Answer Correct ? | 8 Yes | 49 No |
Post New Answer View All Answers
Explain what is the difference between far and near ?
What is the -> in c?
praagnovation
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 could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What are the difference between a free-standing and a hosted environment?
How can I change the size of the dynamically allocated array?
Can we change the value of constant variable in c?
Which is the memory area not included in C program? give the reason
explain how do you use macro?
What is cohesion and coupling in c?
What are directives in c?
How can you pass an array to a function by value?
Explain continue keyword in c
What is data type long in c?