What is the proper way of these job
Tell me about there full work
No Answer is Posted For this Question
Be the First to Post Answer
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Differentiate between null and void pointers.
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
What is a spanning Tree?
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
What is hungarian notation? Is it worthwhile?
What is the difference between a string and an array?
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.
Explain enumerated types.
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above