Is python a c language?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
What is a list in c?
What is a pragma?
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
Difference between exit() and _exit() function?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
Tell me what are bitwise shift operators?
explain about storage of union elements.
Explain what are reserved words?
Write a code to generate a series where the next element is the sum of last k terms.