simple program of graphics and their output display
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
What are external variables in c?
Explain #pragma in C.
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
A stack can be implemented only using array?if not what is used?
What is the use of typedef in structure in c?
Do you know the purpose of 'register' keyword?
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
What is the difference between fread and fwrite function?
different between overloading and overriding
What are the primitive data types in c?
diff between exptected result and requirement?