What is the use of getchar() function?
How can I read and write comma-delimited text?
How to write a program to receive an integer & find its octal equivalent by using for loop?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What is ambagious result in C? explain with an example.
Why flag is used in c?
how many times of error occur in C
Write a function in c to find the area of a triangle whose length of three sides is given.
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
Where does the name "C" come from, anyway?
what does keyword ‘extern’ mean in a function declaration?
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
Why is c still so popular?