What are the application of void data type in c?
No Answer is Posted For this Question
Be the First to Post Answer
write the program to find multiplication of 2-D matrix??????????
What is an example of structure?
write a program to sort the elements in a given array in c language
What is a #include preprocessor?
How can you tell whether two strings are the same?
where are auto variables stored? What are the characteristics of an auto variable?
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
1. Write a program to reverse every second word in a given sentence.
What is encapsulation?
How the c program is executed?
What is a C array and illustrate the how is it different from a list.
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }