Distinguish between actual and formal arguments.
No Answer is Posted For this Question
Be the First to Post Answer
What is the equivalent code of the following statement in WHILE LOOP format?
What are the data types present in c?
Is that possible to store 32768 in an int data type variable?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
Reverse the part of the number which is present from position i to j. Print the new number.[without using the array] eg: num=789876 i=2 j=5 778986
How can I determine whether a machines byte order is big-endian or little-endian?
What is a pointer?
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
write a program that finds the factorial of a number using recursion?
Input any no. and print all the the numbers that comes before it like this for e.g input = 4 0 01 012 0123 01234 plz answer it 2day
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.