Explain what is the difference between a string and an array?
what is develop in c language
long int size a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
18 Answers Acropolis, HCL, Intel, TCS,
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
Explain bitwise shift operators?
Which built-in library function can be used to match a patter from the string?
Concat two string with most overlapped substring has to remove "abcd"+ "cdef" = "abcdef
write a program to gat the digt sum of a number (et. 15= >1+5=6)
What is dangling pointer in c?
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
how to execute with out main in cprogram
What is double pointer?