What is the scope of local variable in c?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
Write a program on swapping (100, 50)
Implement bit Array in C.
Explain demand paging.
Explain following declaration int *P(void); and int (*p)(char *a);
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
Is main is user defined function?
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
What language is lisp written in?
post new interiew question and aptitude test papers
Is c is a middle level language?