What are different storage class specifiers in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
What is the difference between fork() and vfork()?
what is the syallabus of computer science students in group- 1?
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)
What is a pointer on a pointer in c programming language?
write a reverse string to print a stars.(with out using logic) ***** **** *** ** *
Do you know pointer in c?
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
implement NAND gate logic in C code without using any bitwise operatior.
List the different types of c tokens?
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )