Answer Posted / ksambhaji999
For(i=1;i<50;i=i
+2)
{ printf
("%d",i);
for(j=2;j<51;j++)
{ printf
("%d",j);}
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is function prototype?
What is NULL pointer?
How many types of errors are there in c language? Explain
What is the difference between mpi and openmp?
What would be an example of a structure analogous to structure c?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
how many errors in c explain deply
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
What is null in c?
Can main () be called recursively?
What is strcmp in c?
What is data type long in c?
What is variable declaration and definition in c?
Explain Basic concepts of C language?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.