What is the right type to use for boolean values in c? Is there a standard type?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is the best way to comment out a section of code that contains comments?
Explain about the constants which help in debugging?
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }
Can two or more operators such as and be combined in a single line of program code?
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
Why do we use int main instead of void main in c?
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
Is double link list a linear data structure? If Yes, Why?If No, Why?
What is difference between function overloading and operator overloading?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
How to write a C program to determine the smallest among three nos using conditional operator?