What is typedef?
The typedef is a keyword used in C programming to provide some meaningful names to the already existing variable in the C program. It behaves similarly as we define the alias for the commands. In short, we can say that this keyword is used to redefine the name of an already existing variable.
Is This Answer Correct ? | 0 Yes | 0 No |
What is %lu in c?
How do you print only part of a string?
is it possible to change the default calling convention in c ?
What are the advantages of using linked list for tree construction?
Write down the program to sort the array.
how would a 4*3 array A[4][3] stored in Row Major Order?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
what is the use of a array in c
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Can you think of a way when a program crashed before reaching main? If yes how?