What is sizeof array?
No Answer is Posted For this Question
Be the First to Post Answer
What is Dynamic Initialization.
Why is c called a structured programming language?
program for swapping two strings by using pointers in c language
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
Write a C program to count the number of email on text
what is develop in c language
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
When would you use a pointer to a function?
What are the ways to a null pointer can use in c programming language?
who is the father of C Language?
20 Answers CTS, UST,
Program to trim a given character from a string.
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none