What is %d used for?
No Answer is Posted For this Question
Be the First to Post Answer
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
What does != Mean in c?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
How can you determine the size of an allocated portion of memory?
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
main() { printf("hello"); fork(); }
when user give a number it multiply with 9 without useing '+' and '*' oprator
How can I copy just a portion of a string?
What are run-time errors?
Who invented bcpl language?
Here is a neat trick for checking whether two strings are equal