Why cant I open a file by its explicit path?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between struct and union in C?
What are reserved words with a programming language?
what is the different bitween abap and abap-hr?
Find greatest number out of 10 number without using loop.
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is the difference between memcpy and memmove?
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
What is double pointer?
Write a program to find the given number is odd or even without using any loops(if,for,do,while)
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Write a program to print factorial of given number without using recursion?
What is a pointer on a pointer in c programming language?