Explain main function in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference b/w NULL and null?
Write a program to generate random numbers in c?
Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout
main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }
write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables
how the size of an integer is decided? - is it based on processor or compiler or OS?
19 Answers HCL, JPR, Microsoft, nvidia,
. A database table called PERSON contains the fields NAME, BASIC and HRA. Write a computer program to print a report which employee name and total salary for those employees whose total salary is more than 10,000. Total Salary = BASIC + HRA. At the end, the program should also print the total number of employees whose total salary is more than 10,000.
what is level of tree if leaf node is at level 4.please explain.
without using arithmatic operator solve which number is greater??????????
What is sizeof in c?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
What are the average number of comparisons required to sort 3 elements?