What is the size of enum in bytes?
No Answer is Posted For this Question
Be the First to Post Answer
What is pragma c?
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
wtite a program that will multiply two integers in recursion function
When c language was developed?
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
what is op? for(c=0;c=1000;c++) printf("%c",c);
Explain what is the use of a semicolon (;) at the end of every program statement?
What is void pointers in c?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
What is the difference between malloc calloc and realloc in c?
Explain how can I avoid the abort, retry, fail messages?