WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS
CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS
TELL ME THE ANSWER
No Answer is Posted For this Question
Be the First to Post Answer
what is a headerfile?and what will be a program without it explain nan example?
What is array in c with example?
When should structures be passed by values or by references?
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
main() { printf("hello"); fork(); }
what is difference between strcmp & palindrome?
Is null equal to 0 in sql?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?