Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
PointTeleBook
//gcc 7.4.0 //PointTeleBook //this code is created by Rezaul Hoque on March 26,2022;contact: jewelmrh@yahoo.com,Dhaka, Bangladesh //note: codes shared by Rezaul Hoque on rextester are not for sale; they are created and shared to facilitate the algorithm learning process; many like Hoque use this platform to practice programming ;Rezaul hopes his contribution helps others to fine tune their learning; #include <stdio.h> #include <stdlib.h> #include <string.h> struct tele{ char name[80]; int num; }; struct tele* f1(); void f2(struct tele* t); struct tele* f1(){ struct tele tel,*t; t=&tel; printf("Enter name and number: \n"); scanf("%s",t->name); scanf("%d",&t->num); return t; } void f2(struct tele* t){ struct tele tel; t=&tel; printf("name phone number \n"); printf("%s %d",t->name,t->num); } int main() { struct tele* ad; ad=f1(); f2(ad); return 0; }
run
|
edit
|
history
|
help
0
Random test
to find a number is even or not
Add c
Finding the second largets value v0.5
My first 2D array
Stub Program for Problem 3 HW 2
Lab 5 HW Spring 2017 v1.1
TAREA M4 - LOTERIA
18BCE2182 ASSESS_1 Q1-8
ele709 3.5 finished