Is the exit() function same as the return statement? Explain.
No Answer is Posted For this Question
Be the First to Post Answer
define c
Explain the difference between structs and unions in c?
Heyyy All, Just a challenge . A C program with if Else if(){ /// insert sumthing print ("in if") // insert sumting } else { ///// insert sumthing print ("in else"); //// insert sumthing } can anyone modify it so that program prints. if and else both
related proverb of "dont count your chicken before it hatches"
What is this pointer in c plus plus?
main() { int a; a=++100; printf("%d",a); getch(); }
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
What is indirection?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
Differentiate call by value and call by reference?
program for validity of triangle from 3 side
What is memmove?