What is clrscr ()?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
What do mean by network ?
What is a newline escape sequence?
O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N
What is the difference between a structure and a union?
What is a function in c?
What is double pointer in c?
Explain what happens if you free a pointer twice?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
What does %2f mean in c?