How a string is stored in c?
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.
What is the difference between NULL and NUL?
In a switch statement, explain what will happen if a break statement is omitted?
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
Does c have an equivalent to pascals with statement?
Can you apply link and association interchangeably?
Write a program that can show the multiplication table.
What is static and volatile in c?
write a program to display the frequency of each element in a given array in c language
Why clrscr is used after variable declaration?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
Do array subscripts always start with zero?