What is the usage of the pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
How are Structure passing and returning implemented by the complier?
Explain c preprocessor?
What is the difference between constant pointer and pointer to a constant. Give examples.
Write a c program using for loop in switch case?
related to rdbms query .
i want to know the procedure of qualcomm for getting a job through offcampus
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
Is that possible to add pointers to each other?
What is #define in c?
How arrays can be passed to a user defined function