// nested function (a program to display some messages in sub() and nest() #include <stdio.h> void main () { void sub(); printf ( "\nthis is my destiny" ); sub (); printf ( "\nthis is also my destiny" ); } void sub () { void nest(); printf ( "\nthis is the love" ); nest (); printf ( "\nthis is what i really want" ); } void nest () { void love(); printf ( "\nthis is the real love" ); }
Popular posts from this blog
My resume using HTML and CSS
<!doctype html> <html> <head> <head> <title> </title> <h2 align=center style="color:#0000FF" > RESUME</h2> <body align= center background="/Users/ankitkumar/Desktop/2 semester /CSE326/Html\EpZL1LOW4AEmImF.jpeg" height =15% width=15%> <p align=center> <img src="/Users/ankitkumar/Desktop/2 semester /CSE326/Html/IMG_20190414_155610 copy.jpg" height=20% width=20%></p> </br> <p style="background-color:darkgreen"> <b style="color:#00FFFF">QUALIFICATION-</b> </br> 10th with 10 cgpa</br> 12th with 84%</br> currently pursuing btech...
Comments
Post a Comment