What are the applications of c language?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
Taking an example,differentiate b/w loader and linker ?
a simple c program using 'for' loop to display the output 5 4 3 2 1
write a program that will print %d in the output screen??
What is the difference between fread buffer() and fwrite buffer()?
Explain how can I pad a string to a known length?
char ch=10;printf("%d",ch);what is the output
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 Answers C DAC, CDAC, Infosys, Wipro,
All technical questions
Is boolean a datatype in c?
What is data types?