Answer Posted / ankur
I think c programming language is derived from "B" language which is "BASIC" programming language but in c language compiler is used that is why some people called it is the full form of compiler
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
How can you invoke another program from within a C program?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
Can we increase size of array in c?
Why we use int main and void main?
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 does *p++ do? What does it point to?
Explain the difference between strcpy() and memcpy() function?
Did c have any year 2000 problems?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is the size of enum in c?
Explain argument and its types.
Write a code to determine the total number of stops an elevator would take to serve N number of people.
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What is extern variable in c with example?
What is the use of linkage in c language?