What are the types of unary operators?
No Answer is Posted For this Question
Be the First to Post Answer
what does data structure mean?
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
what is pointer ? what is the use of pointer?
What is a symbolic constant?
What is adt in c programming?
how many argument we can pas in in a function
When can a far pointer be used?
what is the main use of c where it can use the c
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
Why can't we initialise member variable of a strucutre
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.