which operator is known as dummy operator in c?
Answers were Sorted based on User's Feedback
Explain continue keyword in c
C language questions for civil engineering
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What are the two types of functions in c?
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
What is difference between array and pointer in c?
Should I learn c before c++?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
HOW TO HANDLE EXCEPTIONS IN C
what is the self-referential structure?
Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.