Forum is an online discussion forum where youth or even the experienced professionals discuss their queries related to and get answers for their questions from other talented individuals. An online discussion can be started by asking questions, helping others with answers. The best part is that it is very simple and is free of cost.
I am trying to make a clone of pocket tank game in turbo c++. It consists of 2 tanks in a 2D terrain . Can someone tell how to generate the terrain with varied slopes and make the ...
You have to debug a crashing application. You are given the source. When you run it repeatedly in a debugger you observe that it never crashes in the same place twice. It uses only ...
i am having several ascii text files containing the landings data of fish by boats.from these data of each file i have to make a access database. Is it possible through turbo c?
#include int main() { double p; double q; scanf("%g",&p);/*as %g and %G can be used for double either normal or exponential also output is not correct when this program is ex ...
why . , .* ,:: , ?: , typeof ,typeid operator we cant overload
what is the differnce between int and long int in gcc if both having the same size.
What will be the output of the program ? #include power(int**); int main() { int a=5, *aa; /* Address of 'a' is 1000 */ aa = &a; a = power(&aa); printf("% ...
I am getting Confused About the file handling in C. How to create new text file?
How to remove space at last? Sometimes we may get spaces at last while executing for loop.so it is not a case to print space at last.
how i follow the activities daily .which type of materials i will follow. i wants to strong basics what should i do/
cant we know the address without using the pointer? and explain in detail about pointers? explain the types of pointers?
I want to place function call using pointer how can i do it? it is quite difficult i am facing problem in my program.
Use a string and move up and down or left or right also they are colored
direct or indirect is there in any inherent concept in c language try to answer this question befor you think like this "are you mad" search and verify it
You are given a sequence of non-negative integers terminated by -1. You have to output 1 if there are atleast 2 distinct elements in the sequence and 0 if the sequence consists of ...
Use a string and move up and down or left or right also they are colored
it is the program for digital clock in embbeded system with proteus software using 7 segments display and microcomputer
What is the difference between for loop and while loop and why we should go for different types of loops? What is the advantage of while loop over for loop?
To take a single character ch as input, we can use scanf("%c", &ch );but how to print a whole sentence with space without get function.