Why array is used in c?
How do you override a defined macro?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
What is const keyword in c?
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
write a program that print itself even if the source file is deleted?
12345 1234 123 12 1
Is file a keyword in c?
What are the types of macro formats?
Find string palindrome 10marks
5 Answers Honeywell, Infosys, Riktam, Roland,
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }