What are the basic data types associated with c?
Are negative numbers true in c?
What are c identifiers?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
How to write a program for swapping two strings without using 3rd variable and without using string functions.
Difference between strcpy() and memcpy() function?
const char * char * const What is the differnce between the above tow?.
program to find the magic square
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above