What is the use of function in c?
No Answer is Posted For this Question
Be the First to Post Answer
how to introdu5ce my self in serco
write a program to remove duplicate from an ordered char array? in c
Is c compiled or interpreted?
What is memory leak in c?
What are all different types of pointers in c?
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 difference between exit() and _exit()?
Explain the use of fflush() function?
What is array in C
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
How are structure passing and returning implemented?