what is diognisis?
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
What is scope rule in c?
What are preprocessor directives?
What is sizeof int in c?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
Explain heap and queue.
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
Explain what are the different file extensions involved when programming in c?
out put of printf(ā%dā,printf(ram));
i have a written test for microland please give me test pattern
Output for following program using for loop only * * * * * * * * * * * * * * *