What are the various types of control structures in programming?
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
Write a code of a general series where the next element is the sum of last k terms.
How does C++ help with the tradeoff of safety vs. usability?
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is file in c language?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
how we do lcm of two no using c simple if while or for statement
What are the 32 keywords in c?
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
write a program to arrange the contents of a 1D array in ascending order
What is the difference between formatted&unformatted i/o functions?