How to find the usage of memory in a c program
How can I call a function with an argument list built up at run time?
What is sparse file?
Explain function?
Write a program in c to replace any vowel in a string with z?
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
What is the mean of this statement:: if(int i=0 * i=9)
how to do in place reversal of a linked list(singly or doubly)?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
1)what are limitations for recursive function? 2)write a program to read a text file and count the number of characters in the text file
what is diffrence between string and character array?
How to set a variable in the environment list?
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