What is a c token and types of c tokens?
No Answer is Posted For this Question
Be the First to Post Answer
Why isn't it being handled properly?
list the no of files created when c source file is compiled
mplementation of stack using any programing language
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4
YBJBU6
char ch=10;printf("%d",ch);what is the output
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
C language questions for civil engineering
write a program for odd numbers?