Program to display given 3 integers in ascending order
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
How would you find a cycle in a linked list?
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?
Input is "Jack and jill went up a hill" To print output is 1-letter word(s)-1 2-letter words-1 3-letter words-1 4-letter words-4
How do c compilers work?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
why java is called as a purely oops language.
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
Why do we use null pointer?
How can I implement a delay, or time a users response, with sub-second resolution?
Is there any possibility to create customized header file with c programming language?