Explain void pointer?
No Answer is Posted For this Question
Be the First to Post Answer
how to find out the reverse number of a digit if it is input through the keyboard?
Write a program to print factorial of given number using recursion?
Just came across this question, felt worth sharing, so here it is I want you to make a C/C++ program that for any positive integer n will print all the positive integers from 1 up to it and then back again! Let's say n=5 I want the program to print: 1 2 3 4 5 4 3 2 1. Too easy you say? Okay then... You can ONLY USE: 1 for loop 1 printf/cout statement 2 integers( i and n) and as many operations you want. NO if statements, NO ternary operators, NO tables, NO pointers, NO functions!
can you explain in brief what is "r+" mode in a file... i know that it si used to read and modify rhe existing content.... but explalanation about the file pointer in "r+" mode i wann to know???????????
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }
What are static variables, and where are they stored?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
a 'c' program to tell that the set of three coordinates lie on a same line
Is an array parameter is always "by reference" ?
Can i use “int” data type to store the value 32768? Why?
Explain 'far' and 'near' pointers in c.