Describe static function with its usage?
No Answer is Posted For this Question
Be the First to Post Answer
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
Why is a semicolon (;) put at the end of every program statement?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
Describe the steps to insert data into a singly linked list.
what is the use of #pragma pack, wer it is used?
what are the stoge class in C and tel the scope and life time of it?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
what are the files which are automatically opened when a c file is executed?
What is a file descriptor in c?
who is the father of c
What are unions in c?