What’s the special use of UNIONS?
No Answer is Posted For this Question
Be the First to Post Answer
differentiate built-in functions and user – defined functions.
11. 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 null character in c?
What is the explanation for prototype function in c?
what is available in C language but not in C++?
10 Answers CTS, TCS,
Using which language Test cases are added in .ptu file of RTRT unit testing???
Is c object oriented?
Are comments included during the compilation stage and placed in the EXE file as well?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
25 Answers Datamatics, Solartis, TCS, ThinkBox, Trine,
Why does not use getgh(); and <conio.h> in c language.
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array