What is double pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
Write a simple program to find the size of different basic data types in C.
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
List some applications of c programming language?
What do you mean by keywords in c?
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
What is null character in c?
What are the different types of storage classes in C?
What does char * * argv mean in c?
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
What is a pointer?