how many types of operators are include in c language
a) 4
b) 6
c) 8
d) 12
No Answer is Posted For this Question
Be the First to Post Answer
What's wrong with "char *p = malloc(10);" ?
What are the advantages of c preprocessor?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Why & is used in c?
write a own function to compare two strings with out using stringcomparition function?
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
why we shiuld use main keyword in C
What are the different file extensions involved when programming in C?
Explain enumerated types in c language?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?