Which header file is used for clrscr?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between the = symbol and == symbol?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
Can static variables be declared in a header file?
What will the preprocessor do for a program?
write a prgram of swapping with 2 valiables
Which is better malloc or calloc?
Why c is called object oriented language?
how can i print "hello"
How to find the usage of memory in a c program
Explain what does the format %10.2 mean when included in a printf statement?
explain about storage of union elements.