Why we use break in c?
No Answer is Posted For this Question
Be the First to Post Answer
What kind of structure is a house?
where do we use volatile keyword?
who developed c and why he developed c?
If the size of int data type is two bytes, what is the range of signed int data type?
write the program to find multiplication of 2-D matrix??????????
Please list all the unary and binary operators in C.
Do you have any idea how to compare array with pointer in c?
Describe the header file and its usage in c programming?
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789
what do you mean by defining a variable in our c code?
Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);