Why we use stdio h in c?
No Answer is Posted For this Question
Be the First to Post Answer
how to find anagram without using string functions using only loops in c programming
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
write a program to display the array elements in reverse order in c language
What is main void in c?
write a programme that inputs a number by user and gives its multiplication table.
What are the types of operators in c?
give one ip, find out which contry
Can we declare a function inside a function in c?
define string ?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Is that possible to store 32768 in an int data type variable?