What is the difference between c and python?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is uint8 in c?

0 Answers  


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

3 Answers   IBM,


how to add numbers without using arithmetic operators.

14 Answers   TCS,


struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]

3 Answers  


Can a pointer be static?

0 Answers  






Does c have an equivalent to pascals with statement?

0 Answers  


is it possible to change the default calling convention in c ?

1 Answers   Aptech,


Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()

2 Answers   Accenture, TCS,


What is difference between scanf and gets?

0 Answers  


Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......

2 Answers  


print a "hello" word without using printf n puts in c language

6 Answers  


Do you have any idea about the use of "auto" keyword?

0 Answers  


Categories