Can math operations be performed on a void pointer?
No Answer is Posted For this Question
Be the First to Post Answer
Explain #pragma statements.
char p="data"; printf(p);
How can variables be characterized?
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.
how to add our own function in c library please give details.?
Write a program or provide a pseudo code to flip the 2nd bit of the 32 bit number ! (Phone Screen)
what is the difference b/w compiler and debugger?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
What will happen when freeing memory twice
Which is better malloc or calloc?