Can we declare a function inside a function in c?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Explain how can I read and write comma-delimited text?
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
What is the use of structure padding in c?
Explain what is gets() function?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Place the #include statement must be written in the program?
write a c program in such a way that if we enter the today date the output should be next day's date.
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
printf("%d",(printf("Hello")); What it returns?
Why do we use main function?
How to write a program for swapping two strings without using 3rd variable and without using string functions.