What is the difference between variable declaration and variable definition in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can you find the exact size of a data type in c?
What are types of structure?
Write a program to implement queue.
Explain what is the advantage of a random access file?
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
I didn't count the ducks that I saw in line, but I do remember that one duck was in front of two ducks, another duck behind two ducks. How many ducks did I see?
how to make program without <> in libray.
void main() { int i=5; printf("%d",i++ + ++i); }
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
HOW TO HANDLE EXCEPTIONS IN C
What is difference between structure and union in c?