How can you pass an array to a function by value?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between definition and declaration? give me some examples.
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
how to write a program which adds two numbers without using semicolon in c
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }
what is the difference between embedded c and turbo c ?
How can you return multiple values from a function?
how to construct a simulator keeping the logical boolean gates in c
What ios diff. Between %e & %f?
Explain the difference between call by value and call by reference in c language?
Is main is a keyword in c?
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?