What is nested structure with example?
No Answer is Posted For this Question
Be the First to Post Answer
1)what are limitations for recursive function? 2)write a program to read a text file and count the number of characters in the text file
What is a void pointer? When is a void pointer used?
Write a code to reverse string seperated by spaces i/p str=India is my country o/p str=aidnI si ym yrtnuoc After writing code, optimize the code
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
What is the meaning of c in c language?
why we shiuld use main keyword in C
write a programming in c language, 1 3 5 7 9 11
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
What is malloc calloc and realloc in c?
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain