Technical Interview Questions And Answers 005. Technical interview question: Give the output of the following code void main() { printf("%s","kode" "god" ".com"); }Prashant ChaudhariFebruary 26, 2018
Technical Interview Questions And Answers 004. Technical interview question: Swap two numbers without using a third variable a = a + b; b = a - b; a = a - b;…Prashant ChaudhariFebruary 25, 2018
Technical Interview Questions And Answers 003. Technical interview question: Check number is even or odd without using arithmetic or relational operator #include<stdio.h> int main() { int number; printf("Please input an integer number: "); scanf("%d", &number); //check…Prashant ChaudhariFebruary 24, 2018
Technical Interview Questions And Answers 002. Technical interview question: Print your name 5 times without a loop #include<stdio.h> void printstring(char* name, int count) { printf("%d : %s\n",count+1,name); count+=1; if(countPrashant ChaudhariFebruary 23, 2018
Technical Interview Questions And Answers 001. Technical interview questions: Print message without using semicolon Method 1 #include<stdio.h> int main() { if(printf("KodeGod\n")) { } } Method 2 #include<stdio.h> int main()…Prashant ChaudhariFebruary 23, 2018
Technical Interview Questions And Answers Prepare for Technical Interviews Prashant ChaudhariFebruary 22, 2018
Learn C ProgrammingLearn ProgrammingProgramming blogsPrograms On BasicsTips-Tricks-Tweaks 5 Steps to learning programming easily Learning programming has never been easy for first-timers. In this blog, we are going to…Prashant ChaudhariFebruary 12, 2018
Programs On Command Line Arguments Command line arguments – Theory and Programs [Learn to code] What are Command line arguments? Learn syntax for using Command line arguments, programs on Command…Prashant ChaudhariFebruary 5, 2018
Programs On File Operations File operations – Theory and Programs [Learn to code] What are File operations? Different modes of File operations and programs on File operations.Prashant ChaudhariFebruary 5, 2018
Programs On Structures Structures – Theory and Programs [Learn to code] What are Structures? Learn syntax for Structures and different programs on Structures.Prashant ChaudhariFebruary 5, 2018