How can I remove the leading spaces from a string?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate Source Codes from Object Codes
What is structure of c program?
What is %d used for?
What is the use of ?
what is a non volatile key word in c language?
Difference between fopen() and open()?
What is c standard library?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
develop algorithms to add polynomials (i) in one variable
what is difference between overriding and overloading?
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