Difference between strcpy() and memcpy() function?
No Answer is Posted For this Question
Be the First to Post Answer
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
write a program to gat the digt sum of a number (et. 15= >1+5=6)
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
What is the use of header files?
How can you print HELLO WORLD without using "semicolon"?
Can a variable be both static and volatile in c?
Is it possible to pass an entire structure to functions?
Why is c called a mid-level programming language?
what is the use of ‘auto’ keyword?
What is logical error?
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type