What is data type long in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

why r u join this company? give solid resons.

16 Answers   IBM, Infosys, TCS,


write a program to display the frequency of each element in a given array in c language

1 Answers  


#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

0 Answers  


If fflush wont work, what can I use to flush input?

0 Answers  


What are the types of type qualifiers in c?

0 Answers  






What are c preprocessors?

0 Answers  


What is Full Form of C and Why We use C

23 Answers  


Stimulate calculator using Switch-case-default statement for two numbers

0 Answers   Wipro,


which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;

5 Answers   Assurgent, TCS,


Just came across this question, felt worth sharing, so here it is I want you to make a C/C++ program that for any positive integer n will print all the positive integers from 1 up to it and then back again! Let's say n=5 I want the program to print: 1 2 3 4 5 4 3 2 1. Too easy you say? Okay then... You can ONLY USE: 1 for loop 1 printf/cout statement 2 integers( i and n) and as many operations you want. NO if statements, NO ternary operators, NO tables, NO pointers, NO functions!

1 Answers  


Not all reserved words are written in lowercase. TRUE or FALSE?

0 Answers  


what is a NULL pointer?

2 Answers  


Categories