What are called c variables?
No Answer is Posted For this Question
Be the First to Post Answer
can any one provide me the notes of data structure for ignou cs-62 paper
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
How can we open a file in Binary mode and Text mode?what is the difference?
How can you tell whether a program was compiled using c versus c++?
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?
An interactive c program to read basic salary of 15 persons. each person gets 25% of basic as HRA, 15%of basic as conveyance allowances, 10%of basic as entertainment allowances.The total salary is calculated by adding basic+HRA+CA+EA.Calculate how many out of 15 get salary above 10,000.Rs also print the salary of each employee
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
wap to print "hello world" without using the main function.
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
What is the difference between strcpy() and memcpy() function in c programming?
Why c is a procedural language?
what will happen if you free a pointer twice after allocating memory dynamically ?