how can use subset in c program and give more example
No Answer is Posted For this Question
Be the First to Post Answer
void main() { int i=5; printf("%d",i++ + ++i); }
What is array of structure in c programming?
How can I do serial ("comm") port I/O?
What are the advantages of c language?
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
Write the control statements in C language
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
Write a program which returns the first non repetitive character in the string?
Write a code of a general series where the next element is the sum of last k terms.