What is static volatile in c?
No Answer is Posted For this Question
Be the First to Post Answer
a=5 a=a++/++a
How would you use the functions fseek(), freed(), fwrite() and ftell()?
0 Answers Aspire, Infogain, TISL,
How do I create a directory? How do I remove a directory (and its contents)?
program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5
Difference between macros and inline functions? Can a function be forced as inline?
0 Answers HAL, Honeywell, Zomato,
What is an lvalue in c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
2 Answers HCL, IBM, Satyam, Vimal, Vimukti Technologies,
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā%dā ,a[i]); }
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
how to multiply two number taking input as a string (considering sum and carry )