What is define c?
No Answer is Posted For this Question
Be the First to Post Answer
What is file in c language?
Is boolean a datatype in c?
what is recursion in C
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
What happens if you free a pointer twice?
Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
What is c++ used for today?
How is a null pointer different from a dangling pointer?
explain what is fifo?
What is a ternary operator in c?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???