What is the difference between a function and a method in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is file a keyword in c?
why we are using float in C
Why functions are used in c?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
What is the scope of global variable in c?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Explain what header files do I need in order to define the standard library functions I use?
What is difference between structure and union in c?
What is the difference between malloc calloc and realloc in c?
What are pointers in C? Give an example where to illustrate their significance.