Can you please explain the difference between strcpy() and memcpy() function?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is a program flowchart and explain how does it help in writing a program?
How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include<stdio.h>...
Why shouldn’t I start variable names with underscores?
What are the different file extensions involved when programming in C?
Why do we use stdio h and conio h?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
What is gets() function?
Which is the best website to learn c programming?
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
Add Two Numbers Without Using the Addition Operator
What is the scope of an external variable in c?
how to swap two integers 1 and 32767 without using third variable