What do you mean by c what are the main characteristics of c language?
No Answer is Posted For this Question
Be the First to Post Answer
When is a void pointer used?
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
how to print this pyramid * * * * * * * * * * * * *
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
Is there a way to switch on strings?
What is the benefit of using an enum rather than a #define constant?
what is the structure pointer?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
How can I set an array's size at run time?
Give the rules for variable declaration?
Why do we need arrays in c?