Explain what are multibyte characters?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
WHAT IS LOW LEVEL LANGUAGE?
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
What are header files? What are their uses?
Can you think of a logic behind the game minesweeper.
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
difference between object file and executable file
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
What is difference between union and structure in c?
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }