Write the syntax and purpose of a switch statement in C.
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
main() { int a[10]; printf("%d",*a+1-*a+3); }
name the language for writing c compiler?
What is a list in c?
Find MAXIMUM of three distinct integers using a single C statement
What do you mean by c what are the main characteristics of c language?
What is a loop?
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
Does c have function or method?
How to add two numbers without using semicolon n c????
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*