What is sizeof in c?
No Answer is Posted For this Question
Be the First to Post Answer
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
What type is sizeof?
Why is it important to memset a variable, immediately after allocating memory to it ?
What is scope rule of function in c?
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
List some of the static data structures in C?
Why isnt there a numbered, multi-level break statement to break out
A stack can be implemented only using array?if not what is used?
why program counter is 16 bit?
x=2,y=6,z=6 x=y==z; printf(%d",x)
13 Answers Bharat, Cisco, HCL, TCS,
Write a simple code fragment that will check if a number is positive or negative.
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }