What are two dimensional arrays alternatively called as?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between functions getch() and getche().
What is a wrapper function in c?
we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????
Is it better to bitshift a value than to multiply by 2?
what will be maximum number of comparisons when number of elements are given?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
What are different types of operators?
Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me
c program to compute AREA under integral
How to add two numbers without using semicolon at runtime
Explain the properties of union. What is the size of a union variable
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);