What is the meaning of this decleration?
unsigned char (*pArray[10][10]);
please reply.
Answer / debaprasad.pal
the brackets are there to confuse. it is a two dimensional
array of uchar.
Is This Answer Correct ? | 3 Yes | 0 No |
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What are pointers?
0 Answers Accenture, Tavant Technologies, Zensar,
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
c pgm count no of lines , blanks, tabs in a para(File concept)
what is call by value and call by reference
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What are different types of variables in c?
Explain what math functions are available for integers? For floating point?
write a c program to add two integer numbers without using arithmetic operator +