Explain how can type-insensitive macros be created?
No Answer is Posted For this Question
Be the First to Post Answer
difference between memcpy and strcpy
Is it valid to address one element beyond the end of an array?
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
Why is C called a middle-level language?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
write a programme that inputs a number by user and gives its multiplication table.
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
Write a function that will take in a phone number and output all possible alphabetical combinations
Why is #define used?
What are the three constants used in c?
what will be maximum number of comparisons when number of elements are given?