Explain what standard functions are available to manipulate strings?
Can we assign integer value to char in c?
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
. Write a program to get a string and to convert the 1st letter of it to uppercase
what is software?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is auto keyword in c?
What is modeling?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
will the program compile? int i; scanf(“%d”,i); printf(“%d”,i);
Tell me when is a void pointer used?
Explain the process of converting a Tree into a Binary Tree.