What is exit() function?
No Answer is Posted For this Question
Be the First to Post Answer
Explain indirection?
What do you understand by friend-functions? How are they used?
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
What is dynamic variable in c?
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
What is the meaning of int *x[]();?
program for comparing 2 strings without strcmp()
What is the diffrent between while and do while statement ?
What is dangling pointer in c?
Write a small C program to determine whether a machine's type is little-endian or big-endian.
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none