Who invented b language?
No Answer is Posted For this Question
Be the First to Post Answer
Why is c called "mother" language?
What are the advantages of using linked list for tree construction?
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
How do you generate random numbers in C?
How can you be sure that a program follows the ANSI C standard?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
What is the size of array float a(10)?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
Explain what is page thrashing?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5