What are different types of operators?
No Answer is Posted For this Question
Be the First to Post Answer
What is typedef example?
define switch statement?
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
What is string concatenation in c?
#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.
write a program for even numbers?
What is time null in c?
c program to input values in a table(using 2D array) and print odd numbers from them
What is the difference between new and malloc functions?
write a program in c to read array check element is present or not?
write a program to print data of 5 five students with structures?
simple program of graphics and their output display