Posts

Showing posts from April, 2020

Call By reference

Image
Call by Reference A classic example of call by reference is : #include <stdio.h> void add(int *num1,int *num2) {     *num1=5;     *num2=10; } int main() {     int a,b;     printf("\n Enter two numbers : ");     scanf("%d%d",&a,&b);     add(&a,&b);     printf("\n %d %d ",a,b);     return 0; }

Something about me

Image
Something about me  H ey peeps, its me Abhishek and it's my first blog ever . I wanted to write something about me, but you know there are people about whom you can write about a trillion lines about their deeds, achievements and there are some people like me, having no achievements and nothing to write about, a single line would be too long I guess lol. Jokes apart, through this blog I will convey and provide all the study materials, which I could gather in my B-tech college life.