What does c mean before a date?
No Answer is Posted For this Question
Be the First to Post Answer
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is the difference between #include and #include 'file' ?
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
what is the use of call back function in c?tell me with example
What is the purpose of 'register' keyword?
printf("%d",(printf("Hello")); What it returns?
Is it valid to address one element beyond the end of an array?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
Why the use of alloca() is discouraged?
Can true be a variable name in c?
Write a C program to count the number of email on text