How can you return multiple values from a function?
Explain how can I convert a number to a string?
If null and 0 are equivalent as null pointer constants, which should I use?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
How will you allocate memory to a double pointer ?
What do you understand by normalization of pointers?
write a program in c to print **** * * * * ****
Create a simple code fragment that will swap the values of two variables num1 and num2.
can we declare a variable in different scopes with different data types? answer in detail
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What’s the special use of UNIONS?
Wt are the Buses in C Language
diff .between strcture and union