What is the use of pointers in C?
No Answer is Posted For this Question
Be the First to Post Answer
How to reverse a string using a recursive function, with swapping?
explain how do you use macro?
Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.
7 Answers Accenture, Gridco, IBM, Kevin IT, TCS, Vimukti Technologies,
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
What is a built-in function in C?
How can you pass an array to a function by value?
How can I convert a number to a string?
how we do lcm of two no using c simple if while or for statement
What is c value paradox explain?
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }
Explain what is wrong with this program statement?
What are enumerated types?