What is a string?
No Answer is Posted For this Question
Be the First to Post Answer
will u give me old quesrion papers for aptitude for L & t info tech?
What is meant by type casting?
What are the two types of functions in c?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What is indirection? How many levels of pointers can you have?
How is a macro different from a function?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
write an algorithm to get a sentence and reverse it in the following format: input : I am here opuput: Here Am I note: first letter of every word is capiatlised
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
Tell us something about keyword 'auto'.
Do you know null pointer?
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);}