Simplify the program segment if X = B then C ← true else C
← false
No Answer is Posted For this Question
Be the First to Post Answer
List the different types of c tokens?
What is the meaning of && in c?
What is the difference between far and near in c?
Explain what happens if you free a pointer twice?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
how to find a 5th bit is set in c program
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
what is the difference between #include<stdio.h> and #include "stdio.h" ?
What is openmp in c?
Is there any demerits of using pointer?
Write a program to print the prime numbers from 1 to 100?
What are the c keywords?