Stimulate calculator using Switch-case-default statement for
two numbers
No Answer is Posted For this Question
Be the First to Post Answer
Can include files be nested? How many levels deep can include files be nested?
What are dangling pointers in c?
What is a structure in c language. how to initialise a structure in c?
what is the use of #pragma pack, wer it is used?
Which is best linux os?
What is the difference between array and pointer in c?
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
What are inbuilt functions in c?
can you explain in brief what is "r+" mode in a file... i know that it si used to read and modify rhe existing content.... but explalanation about the file pointer in "r+" mode i wann to know???????????
How does sizeof know array size?
What is the meaning of int *x[]();?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }