Can you pass an entire structure to functions?
write a program in c language to print your bio-data on the screen by using functions.
6 Answers College School Exams Tests, IBM,
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
Why do we use return in c?
c program to manipulate x=1+3+5+...+n using recursion
Can we declare function inside main?
how to write a bubble sort program without using temporary variable?
What is the difference between fread buffer() and fwrite buffer()?
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
1 Answers 91mobiles, Amazon, App Guruz, College School Exams Tests, Folio3, Infosys, Omega, Planin, Riphah International University, Subex,
void main() { int i=5; printf("%d",i+++++i); }
What is meant by int main ()?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?