There is a number and when the last digit is moved to its
first position the resultant number will be 50% higher than
the original number.Find the number?
what is use of malloc and calloc?
what is recursion in C
What is #include cctype?
errors in computer programmes are called
Write a code to determine the total number of stops an elevator would take to serve N number of people.
What are the 32 keywords in c?
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
What functions are used for dynamic memory allocation in c language?
How will you allocate memory to double a pointer?
how to execute with out main in cprogram
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }