What are reserved words with a programming language?
No Answer is Posted For this Question
Be the First to Post Answer
What are conditional operators in C?
how to exchnage bits in a byte b7<-->b0 b6<-->b1 b5<-->b2 b4<-->b3 please mail me the code if any one know to rajeshmb4u@gmail.com
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
What are the 5 elements of structure?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is the Difference between Macro and ordinary definition?
3 Answers Bosch, Cognizant, College School Exams Tests, Motorola,
Explain the use of function toupper() with and example code?
What does emoji p mean?
Combinations of fibanocci prime series
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
Write a C++ program to give the number of days in each month according to what the user entered. example: the user enters June the program must count number of days from January up to June