What is the difference between c and python?
No Answer is Posted For this Question
Be the First to Post Answer
What is uint8 in c?
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
how to add numbers without using arithmetic operators.
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
Can a pointer be static?
Does c have an equivalent to pascals with statement?
is it possible to change the default calling convention in c ?
Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
What is difference between scanf and gets?
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
print a "hello" word without using printf n puts in c language
Do you have any idea about the use of "auto" keyword?