Do you know what is a programing language ?
No Answer is Posted For this Question
Be the First to Post Answer
What is equivalent to ++i+++j?
In a byte, what is the maximum decimal number that you can accommodate?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
please explain every phase in the "SDLC" in the dotnet.
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
What is the difference between arrays and pointers?
#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); }
What are the types of macro formats?
Process by which one bit pattern in to another by bit wise operation is?
Differentiate between the = symbol and == symbol?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
What is the use of the restrict keyword?