What is the translation phases used in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Is register a keyword in c?
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
question-how to run a c programme.
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
write a program in c to print **** * * * * ****
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
palindrome for strings and numbers----Can anybody do the prog?
6 Answers CTS, TCS, Vipro Lifescience Pvt,
any string of bits of length 'n' represents a unique non- negative integer between.............?
WAP – represent a char in binary format
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?