What is the right way to use errno?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
what is the diff b/w static and non static variables in C. Give some examples plz.
What are the two types of functions in c?
What is getch c?
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }
Why array starts with index 0
What is indirection in c?
Why pointers are used?
How will you write a code for accessing the length of an array without assigning it to another variable?
how to swap two integers 1 and 32767 without using third variable
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
What is union and structure?