Explain how do you list a file’s date and time?
No Answer is Posted For this Question
Be the First to Post Answer
What is data structure in c language?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Can a pointer be static?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
Write a program to print factorial of given number without using recursion?
Is double link list a linear data structure? If Yes, Why?If No, Why?
Is c programming hard?
how would a 4*3 array A[4][3] stored in Row Major Order?
what is the return type of printf
Why do we need functions in c?