In c programming language, how many parameters can be passed to a function ?
No Answer is Posted For this Question
Be the First to Post Answer
What are conditional operators in C?
Write a code to remove duplicates in a string.
Explain what is the concatenation operator?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
what is difference between C and C++
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
Is c is a middle level language?
application attempts to perform an operation?
How can I write functions that take a variable number of arguments?
What are the advantages of c language?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
What are control structures? What are the different types?