Stimulate calculator using Switch-case-default statement for
two numbers
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
what is an inline fuction??
can we access one file to one directory?
Write a function in c to find the area of a triangle whose length of three sides is given.
matrix multiplication fails introspect the causes for its failure and write down the possible reasons for its failurein c language.
Why c is a mother language?
what is the use of fflush() function?
What is the difference between fork() and vfork()?
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
what is a constant pointer in C
What is pass by reference in c?