What are the benefits of c language?
No Answer is Posted For this Question
Be the First to Post Answer
Why use int main instead of void main?
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
what is the use of operator ^ in C ? and how it works?
What is the use of define in c?
Why enum is used in c?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What is the difference between int main and void main in c?
What is string in c language?
What do you mean by a sequential access file?
Explain how can I remove the trailing spaces from a string?
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
Write a programe print the sum of series 0,1,2,.....10