In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Write a c program using for loop in switch case?
What is f'n in math?
what is the advantage of software development
What are dangling pointers in c?
List some of the dynamic data structures in C?
How many keywords (reserve words) are in c?
What are structure types in C?
What is meaning of tree
wat s the meaning of (int *)p +4;
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
size maximum allocated by calloc()
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?