This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be
a) call_me(myvar)
b) call_me(*myvar)
c) call_me(&myvar)
d) expanded memory
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
What is auto keyword in c?
what is the use of ~ in c lang?????
a number is perfect if it is equal to the sum of its proper divisor.. 6 is perfect number coz its proper divisors are 1,2 and three.. and 1+2+3=6... a number is deficient if the sum of its proper divisor is less than the number.. sample: 8 is deficient, coz its proper divisors are 1,2 and 4, and 1+2+4=7. abundant number, if the sum of its proper divisor is greater than the number.. sample..12 is abundant coz 1+2+3+4+6=16 which is geater than 12. now write a program that prompts the user for a number, then determines whether the number is perfect,deficient and abundant..
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .
What is uint8 in c?
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
What is the g value paradox?