What is enumerated data type in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is the most efficient way to store flag values?
What is static memory allocation? Explain
write a program to find the largest and second largest integer from an array
What is a null string in c?
write a program for 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 4 4
What is the difference between printf and scanf in c?
What is the difference between near, far and huge pointers?
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
Function to find the given number is a power of 2 or not?
Can you apply link and association interchangeably?
i need all types of question paper releted to "c" and other language.
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }